Open In App

Create a Tabular representation of Data in R Programming – table() Function

Last Updated : 19 Jun, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

table() function in R Language is used to create a categorical representation of data with variable name and the frequency in the form of a table.

Syntax: table(x)

Parameters:
x: Object to be converted

Example 1:




# R Program to create 
# a tabular representation of data
  
# Creating a vector
vec = c(2, 4, 3, 1, 2, 3, 2, 1, 4, 2
  
# Calling table() Function
table(vec)


Output:

vec
1 2 3 4 
2 4 2 2 

Example 2:




# R Program to create 
# a tabular representation of data
  
# Creating a data frame 
df = data.frame(  
  "Name" = c("abc", "cde", "def"),  
  "Gender" = c("Male", "Female", "Male"
)  
    
# Calling table() function 
table(df) 


Output:

     Gender
Name  Female Male
  abc      0    1
  cde      1    0
  def      0    1

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads