InterviewSolution
Saved Bookmarks
| 1. |
Matrices can be created by row-binding with the help of the following function.(a) rjoin()(b) rbind()(c) rowbind()(d) rbinding()I had been asked this question in homework.My question is from Overview of R in section History, Overview and Getting Started of R Programming |
|
Answer» CORRECT option is (b) rbind() The EXPLANATION: rbind() is used to create a matrix by row-binding. Row- binding is the basic function of R. R – bind is used to bind the functions in R. MATRICES can be CREATED by column-binding or row-binding with the cbind() and rbind() functions. |
|