I have a dataframe with 1000 columns and 8 rows, I need to calculate row means.I tried this loop:
final <- as.data.frame(matrix(nrow=8,ncol=1))
for(j in 1:8){
value<- mean(dataframe[j,])
final[j,]<-value
}
but got the following error:
In mean.default(df2[j, ]) : argument is not numeric or logical: returning NA
t()
and thencolMeans()
. – Tillotson