我有一个列表,我想用它lapply()
来计算其元素的平均值。例如,对于列表的第七项,我有:
>list[[7]]
[1] 1 1 1 1 1 1 1 1 1 1
我的输出应该是:
> mean(temp[[7]][1:10])
[1] 1
但是当我lapply()
像下面这样使用时,结果会是另外一回事。我应该怎么办?
> lapply(list[[7]][1:10],mean)
[[1]]
[1] 1
[[2]]
[1] 1
.
.
.
[[10]]
[1] 1
要获得列表中第 7 个元素的平均值,只需使用mean(list[[7]])
. 要获得列表中每个元素的平均值,请使用lapply(list,mean)
. 打电话给你的名单是一个非常糟糕的主意list
。
consider using sapply
instead of lapply
.
# sample data
a<- 1:3
dat <- list(a, a*2, a*3)
# sapply gives a tidier output
> sapply(dat, mean)
[1] 2 4 6
> lapply(dat, mean)
[[1]]
[1] 2
[[2]]
[1] 4
[[3]]
[1] 6
plyr
package. This question also does a good job of explaining the different *apply functions