Link to home
Start Free TrialLog in
Avatar of saini_er
saini_er

asked on

How can I take standard deviation in MYsql?

I have two columns containing two different timestamps for particular user. How can I calculate Standard deviation for this.

Is there any direct function available to perform this like sum() or avg()
Avatar of Aleksandar Bradarić
Aleksandar Bradarić
Flag of Serbia image

You have the STDDEV() function... Not sure if that's what you need: http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html#function_stddev
SOLUTION
Avatar of Frosty555
Frosty555
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of saini_er
saini_er

ASKER

Thanks guys for reply.....All of these methods are for finding standard deviation population where one value is randomly picked from table and then used as average..


I s there any function which can give regualr standard deviation whch is generally found by calculating exact mean
mysql supports STD() which is population standard deviation, and STDDEV_SAMP() which returns the sample standard deviation. Not sure but maybe the sample deviation is what you're looking for.

Alternatively you can do it manually using some variables. You can nest the aggregate functions in MySQL But I think if you get the average first and store it in a variable, you can do the rest. E.g. something like:

SELECT @ln_average := AVG(total) FROM yourtable;
SELECT (1/COUNT(total)) * SUM( POW(total - @ln_average,2) )  FROM yourtable;
"You can nest the aggregate functions in MySQL"

Sorry, you CAN'T nest the aggregate functions in MySQL.
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial