NAを含む行列にapplyを使った演算を行うと、該当行(または列)はNAが返ってくる。
これを防ぐために、
apply(matrix, 2, mean, na.rm=TRUE)
と入力すれば、NAを含めずに計算(上記の場合は平均値)ができる。
No comments:
Post a Comment