문제

HierCluster is the list of data frames.

I can get the info about one cluster like this:

tail(sort(colMeans(HierCluster[[i]])))

where i is an i-th element in the list.

I used lapply to get the info on all the clusters at once:

lapply(lapply(lapply(HierCluster, colMeans), sort), tail)

But using lapply 3 times seems rather cumbersome, is there a more practical way of doing this?

도움이 되었습니까?

해결책

You can make an anonymous function that combines the three:

lapply(HierCluster, function(x) tail(sort(colMeans(x))))
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top