李芬要加油
2019-01-09 16:58
> table(x)
x
male female
2 3
> unclass(x)
[1] 2 2 1 1 2
attr(,"levels")
[1] "male" "female"
> class(unclass(x))
[1] "integer"
> ?table
> ?unclass
> ?class(unclass)
?table ?unclass ?class(unclass)在控制台查找 再操作大概就懂了
table(x)检查列表属性unclass(x)去除列表属性
R语言基础
79670 学习 · 262 问题
相似问题
回答 1
回答 5