mean and sd from matrix out of CSV in R

75 views Asked by At

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)

0

There are 0 answers