我是R的新手,我想用它来制作一些图表。所以我有这个样本数据, 第1天的比分
答案 0 :(得分:0)
您不必在数据集中包含平均值,您可以使用mean()
轻松访问它
重新创建数据集;
dataset <- read.table(text="One Two Three Four Five Six
4 6 10 10 6 4
5 7 5 10 4 5
4 8 4 2 4 2
6 4 8 5 3 3
7 5 8 6 4 5
7 5 8 8 7 5
8 5 9 9 8 5
4 5 4 3 8 7
6 6 4 5 4 2
4 6 7 7 8 3", head=TRUE)
获得第一场比赛的平均值;
mean(dataset$One)
至于标准错误,请看这个问题; In R, how to find the standard error of the mean?