- 向量化计算
x = 1:5
y = x^2
y = matrix(1:16,4,4)
z = y^2
- *apply家族: 在指定维度上进行运算
-apply
-lapply, sapply
-mapply, tapply
apply(x,MARGIN=2,mean)
apply(x,MAGRIN=2, quantile, probs=(0.1,0.5,0.7))
MARGIN=1 为行
MARGIN=2 为列
高维可以提供更多维度
x = 1:5
y = x^2
y = matrix(1:16,4,4)
z = y^2
apply(x,MARGIN=2,mean)
apply(x,MAGRIN=2, quantile, probs=(0.1,0.5,0.7))
MARGIN=1 为行
MARGIN=2 为列
高维可以提供更多维度
本文标题:向量化计算和*apply家族
本文链接:https://www.haomeiwen.com/subject/jchbmhtx.html
网友评论