设为首页 加入收藏

TOP

R abalone data set
2017-10-10 12:09:23 】 浏览:6779
Tags:abalone data set
#鲍鱼数据集
aburl <- 'http://archive.ics.uci.edu/ml/machine-learning-databases/abalone/abalone.data' abnames <- c('sex','length','diameter','height','weight.w','weight.s','weight.v','weight.sh','rings') abalone <- read.table(aburl, header = F , sep = ',', col.names = abnames)
#另一种表头
aburl <- 'http://archive.ics.uci.edu/ml/machine-learning-databases/abalone/abalone.data' abnames <- c('Gender','Length','Diameter','Height','WholeWt','ShuckedWt','ViscWt','ShellWt','Rings') abalone <- read.table(aburl, header = F , sep = ',', col.names = abnames)

 

abalone.data.rar

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇Iris的R语言命令工具箱(1) 下一篇logistic回归和probit回归预测公..

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目