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
相關用法
- R語言 is.table()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 as.list()用法及代碼示例
- R語言 as.character()用法及代碼示例
- R語言 as.integer()用法及代碼示例
- R語言 as.logical()用法及代碼示例
- R語言 as.vector()用法及代碼示例
- R語言 as.matrix()用法及代碼示例
- R語言 toString()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 read.table()用法及代碼示例
- R語言 table()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
- R語言 cumprod()用法及代碼示例
- R語言 is.character()用法及代碼示例
- R語言 ncol()用法及代碼示例
- R語言 is.factor()用法及代碼示例
- R語言 nrow()用法及代碼示例
- R語言 unique()用法及代碼示例
- R語言 max()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Convert an Object to a Table in R Programming – as.table() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。