table unclass class(unclass) 这几个函数不太懂意思?也不知其作用?

来源:2-5 R语言基础 factor

李芬要加油

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)


写回答 关注

2回答

  • 加油搬砖
    2020-08-12 09:26:32

     ?table ?unclass ?class(unclass)在控制台查找 再操作大概就懂了


  • meteorLiu
    2019-03-11 22:00:30

    table(x)检查列表属性unclass(x)去除列表属性

R语言基础

本R语言基础教程,教你如何在R中操纵自己数据,快速入门

79670 学习 · 262 问题

查看课程

相似问题