standard deviation

G

Guest

I would very much appreciate for any help in solving this problem.

I have two sets of data, a group and a control group, where I am calculating an average for each set. How could I go about calculating the standard deviation using access?

Cheers
 
G

GreySky

Standard deviation can be calculated by the same query
that produces your average; instead of selecting "avg,"
you would use:

StDev (uses n-1) or
StDevP (uses n; "standard devation of a population")

If you're talking about the coefficient of correlation
(i.e., r) between two sets of data, then that's a
different monster entirely.

SELECT (SUM(Representative * Competitor) - SUM
(Representative)
* SUM(Competitor) / COUNT(*))
/ SQRT((SUM(Representative * Representative)
- SUM(Representative) * SUM(Representative) / COUNT
(*))
* (SUM(Competitor * Competitor) - SUM(Competitor)
* SUM(Competitor) / COUNT(*))) AS r

David Atkins, MCP
 

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

Similar Threads


Top