I have a table of values 1, 2, 3, 4 randomly distributed across 35 rows and 15 columns. How can use the sum() function to just add the "4"s across the entire table, and also on a separate operation add all "4"s from a specific column.
Thanks,
This is the matrix:
m1imported <-matrix(sample(x = 1:4, size = 35*15, replace = TRUE), nrow = 35, ncol = 15)
us<c("CALIFORNIA","FLORIDA","ARIZONA","MICHIGAN","WASHINGTON","GEORGIA","TEXAS","OHIO","ALABAMA","COLORADO","NEW JERSEY","VIRGINIA","MONTANA","OREGON","NEW YORK")
colnames(m1imported) = us
num<-c(1:35)
rownames (m1imported) = num
question from:
https://stackoverflow.com/questions/65913637/sum-specific-values-in-a-specific-column-in-r-using-sum 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…