how to get the means and stdandard errors of every row in 5 coulum

J

jt42

Hi, can you tell me how to get statistics on five different colums of numbers:
specifically, how to get means and st. errors of every row in five columns.
Thanks, Joanna
 
J

joeu2004

jt42 said:
Hi, can you tell me how to get statistics on five different
colums of numbers: specifically, how to get means and
st. errors of every row in five columns.

I assume you mean "of each row".

The formula =AVERAGE(A1:E1) provides the average of row 1.

The formula =STDEV(A1:E1) provides the standard deviation.

The standard error is =STDEV(A1:E1)/SQRT(COUNT(A1:E1)) .

Use STDEVP() if your numbers represent the entire population.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top