美文网首页
8.R中的数据类型和数据结构总结

8.R中的数据类型和数据结构总结

作者: NiKasu | 来源:发表于2021-05-19 09:31 被阅读0次

创建函数

向量c():另外两个函数未展示

矩阵matrix(vector,nrow=    ,ncol=   ,byrow=TRUE/FALSE,dimnames=list(   ,   )

数据框data.frame(col1,col2,col3,...)

列表list(object1,object2, object3,...)  

提取元素/列表中的对象

向量vector[]

矩阵matrix[i,j]

数据框data.frame[i,j]或data.frame$字段名

列表list[i]或list$字段名

数据结构之间的转换

as.vector()    #转为向量

as.matrix()    #转为矩阵

as.data.frame()    #转为数据框

as.list()    #转为列表

数据模式之间的转换

as.factor()    #转为因子型

as.numeric()    #转为数值型

as.character()    #转为字符型

as.logical()    #转为逻辑型

判断数据数据结构类型

is.vector()    

is.matrix()    

is.data.frame()    

is.list()

相关文章

网友评论

      本文标题:8.R中的数据类型和数据结构总结

      本文链接:https://www.haomeiwen.com/subject/tjoujltx.html