Open In App
Related Articles

Convert an Object to a Table in R Programming – as.table() Function

Improve Article
Improve
Save Article
Save
Like Article
Like

as.table() function in R Language is used to convert an object into a table.

Syntax: as.table(x)

Parameters:
x: Object to be converted

Example 1:




# R Program to convert 
# an object to a table
  
# Creating a vector
vec = c(2, 4, 3, 1, 2, 3, 2, 1, 4, 2
  
# Calling as.table() Function
as.table(vec)


Output:

A B C D E F G H I J 
2 4 3 1 2 3 2 1 4 2 

Example 2:




# R Program to convert 
# an object to a table
  
# Creating a matrix
mat = matrix(c(1:9), 3, 3)
mat 
  
# Calling as.table() Function
as.table(mat)


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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 19 Jun, 2020
Like Article
Save Article
Similar Reads