Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 R 中有一个表列表。行数因表而异,但列数是统一的(22)。我需要计算每个表中每一列的最小值、最大值和中值,并将其放入向量中。每个表需要有一个单独的向量。
lapply(your_list,function(x){apply(x,2,mean)})
替换mean为min,max或median 根据您要计算的值。
mean
min
max
median
apply(x,2,...)将函数应用于矩阵、数组或数据帧的每一列(即第二维)。 lapply(...)将函数应用于列表的每个元素。
apply(x,2,...)
lapply(...)