Does LINQ model the aggregate SQL function STDDEV() (standard deviation)?
If not, what is the simplest / best-practices way to calculate it?
Example:
SELECT test_id, AVERAGE(result) avg, STDDEV(result) std
FROM tests
GROUP BY test_id
|
Does LINQ model the aggregate SQL function If not, what is the simplest / best-practices way to calculate it? Example:
| |||
|
feedback
|
|
You can make your own extension calculating it
Transformed into extension from Adding Standard Deviation to LINQ by Chris Bennett. | |||||||||||||||
feedback
|
|
Dynami's answer works but makes multiple passes through the data to get a result. This is a single pass method that provides the correct output:
| |||||||||
feedback
|