当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 as.table()用法及代码示例


as.table()R语言中的函数用于将对象转换为表。

用法: as.table(x)

参数:
x:要转换的对象

范例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)

输出:

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

范例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)

输出:

     [, 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

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Convert an Object to a Table in R Programming – as.table() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。