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.

Related questions

0 votes
asked Feb 25, 2020 in R Language by rahuljain1
+3 votes
asked Jul 28, 2019 in R Language by Aarav2017
...