I want to calculate the mean and the sd from a matrix (14*20) that I import like this from a csv file:
data<- read.csv("data.csv",header=F,sep=";")
Why does this not work:
sd(data)
and mean(data)
I want to calculate the mean and the sd from a matrix (14*20) that I import like this from a csv file:
data<- read.csv("data.csv",header=F,sep=";")
Why does this not work:
sd(data)
and mean(data)