InterviewSolution
Saved Bookmarks
| 1. |
What Is The Function Used For Adding Datasets In R? |
|
Answer» For adding two DATASETS rbind() function is used but the COLUMN of two datasets must be same. Syntax: rbind(x1,x2……) where x1,x2: VECTOR, matrix, data frames. For adding two datasets rbind() function is used but the column of two datasets must be same. Syntax: rbind(x1,x2……) where x1,x2: vector, matrix, data frames. |
|