Posts by Danilo • 11 points
1 post
-
1
votes1
answer43
viewsQ: Average column value within a table with R
I need to generate the average in a column of value of a table in R, but I’m not getting it. I’ve done so creating a vector: x <- c(15,12,8,9,5,6,1,2) mean(x) It works, but when I point to the…