InterviewSolution
Saved Bookmarks
| 1. |
What is the method to create a data frame?(a) frame(data)(b) frameData()(c) data.frame()(d) frame.Data() |
|
Answer» Correct answer is (c) data.frame() Easy explanation: A Data frame is a two-dimensional data structure, i.e., data is aligned in a tabular fashion in rows and columns. |
|