0 votes
in R Language by
What is the function used for adding datasets in R language?

2 Answers

0 votes
by

For adding two datasets rbind() function is used but the column of two datasets must be same.

0 votes
by

rbind function can be used to join two data frames (datasets). The two data frames must have the same variables, but they do not have to be in the same order.

...