How you can create a table in r without external file?
Answer Posted / Eram Khan
{"Creating Table": "In R, you can create a table (data frame) without an external file using functions like c() for column binding and data.frame() for creating the data frame. For example: myData <- data.frame(c("A1", "B1", "C1"), c("A2", "B2", "C2")) creates a 2x3 table."}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers