![]() |
VOOZH | about |
as.table() function in R Language is used to convert an object into a table.
Syntax: as.table(x) Parameters: x: Object to be convertedExample 1: Output:
A B C D E F G H I J 2 4 3 1 2 3 2 1 4 2Example 2: Output:
[, 1] [, 2] [, 3] [1, ] 1 4 7 [2, ] 2 5 8 [3, ] 3 6 9 A B C A 1 4 7 B 2 5 8 C 3 6 9