📌  相关文章
📜  如何在 R 中获取矩阵的行和列的总和 - 无论代码示例

📅  最后修改于: 2022-03-11 14:57:10.910000             🧑  作者: Mango

代码示例1
#Suppose x is a matrix
x<-matrix()

#Vector of Row sums of x
rowSums(x)
#Vector of Col sums of x
colSums(x)