我对R很新,所以请耐心等待。
在.txt文件中给出测试数据......
Num height weight class 1 72.1 147.5 1 2 75.2 125.4 1 3 60.3 102.3 2 4 62.4 98.2 2 5 50.5 74.1 3
我通过以下方式将文件读入R:
testdata <- read.table("testdata.txt", header = TRUE)
用15个obs创建数据。 4个变量。我可以将每列分配给一个对象,如下所示:
numCol <- testdata$Num
heightCol <- testdata$height
weightCol <- testdata$weight
classCol <- testdata$class
然后,例如,heightCol给了我
heightCol
> 72.1 75.2 60.3 62.4 50.5
我需要做的是获取每个类并找到平均向量,标准偏差,散点图和平行坐标。
如果有人可以向我解释如何找到,比方说,只是平均向量,我相信我可以找出其余的。
答案 0 :(得分:0)
colMeans(testdata)
或
apply(testdata, 2, mean)
有关详细信息,请参阅帮助文件
?colMeans
?apply