评论

收藏

[R语言] R语言模型开发中的列类型转换为向量

编程语言 编程语言 发布于:2021-06-29 22:11 | 阅读数:306 | 评论:0

Rscript /jhbigdata/appform/etc/R-code/Method-shujutongji/All-combination-Below.R /mnt/hdfs/user/jhadmin/duoyuanxianxing.csv R1 Fertility,Agriculture,Examination,Education,Catholic,Infant.Mortality
原始数据  data <- iris
方法一参数传入  nn <- “Sepal.Length,Sepal.Width”
nn <- strsplit(nn,",")
print(nn)
str(nn)
length(nn)
nn <- as.vector(unlist(nn[1]))
print(nn)
head(data[, nn])
DSC0000.png
方法二参数传入  mm <- c(“Sepal.Length”, “Sepal.Width”)
print(mm)
str(mm)
head(data[, mm])
DSC0001.png

  
关注下面的标签,发现更多相似文章