首页 > 代码库 > R abalone data set

R abalone data set

#鲍鱼数据集
aburl <- http://archive.ics.uci.edu/ml/machine-learning-databases/abalone/abalone.dataabnames <- 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.dataabnames <- c(Gender,Length,Diameter,Height,WholeWt,ShuckedWt,ViscWt,ShellWt,Rings)abalone <- read.table(aburl, header = F , sep = ,, col.names = abnames)

 

abalone.data.rar

R abalone data set