如何在 r 中将表转换为数据框(附示例)
您可以使用以下基本语法将表转换为 R 中的数据框:
df <- data. frame (rbind(table_name))
以下示例展示了如何在实践中使用此语法。
示例:将表转换为 R 中的数据框
让我们首先在 R 中创建一个表:
#create matrix with 4 columns
tab <- matrix(1:8, ncol= 4 , byrow= TRUE )
#define column names and row names of matrix
colnames(tab) <- c('A', 'B', 'C', 'D')
rownames(tab) <- c('F', 'G')
#convert matrix to table
tab <- as. table (tab)
#view table
tab
ABCD
F 1 2 3 4
G 5 6 7 8
#view class
class(tab)
[1] “table”
接下来,让我们将表转换为数据框:
#convert table to data frame
df <- data. frame (rbind(tab))
#view data frame
df
ABCD
F 1 2 3 4
G 5 6 7 8
#view class
class(df)
[1] "data.frame"
我们可以看到表格已经转换为数据框了。
请注意,我们还可以使用row.names函数来快速更改数据框的行名称:
#change row names to list of numbers
row. names (df) <- 1:nrow(df)
#view updated data frame
df
ABCD
1 1 2 3 4
2 5 6 7 8
请注意,线路名称已从“F”和“G”更改为 1 和 2。
其他资源
以下教程解释了如何在 R 中执行其他常见操作: