How to use c() function In R Language

We can combine lists by appending the lists using c() function.

Syntax:

c(list1,list2,list3,..,list n)

Where lists is the multiple lists

Example: R program to combine 4 lists

R




# create list1 
list1=list(names=c('sravan','bobby','ojaswi'),
           marks=c(100,89,76))
  
# create list2 
list2=list(names=c('rohith','gnanesh','satwik'),
           marks=c(96,89,70))
  
# create list3 
list3=list(names=c('vijay','gopal','harsha'),
           marks=c(100,89,76))
  
# create list4 
list4=list(names=c('ramya','khyathi','ramya preethi'),
           marks=c(96,89,70))
  
  
# combine lists using c() function
final_list=c(list1,list2,list3,list4)
  
# display list
print(final_list)


Output:

How to Combine Lists in R

In this article, we will discuss to see how to combine the Lists in R programming language.

Similar Reads

Method 1: Using c() function

We can combine lists by appending the lists using c() function....

Method 2 : Using append() function

...

Method 3 : Using mapply() function

By using append() function we can combine lists...

Method 4 : Using map() function

...

Contact Us