Explain how you can create a table in r without external file?
Answer Posted / Paritosh
In R, you can create a data frame which acts like a table without an external file. Here's an example:n```Rnmy_data <- data.frame(n variable1 = c(1, 2, 3),n variable2 = c('a', 'b', 'c'),n)n``
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers