Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to eliminate outliers of a set using 1.65 (90%) Standard Deviations from the MODE, not MEAN for various reasons I won't go in to now.

Is there a good way of doing this? I assume the built in STDVE() used MEAN. Does anyone know what this is doing under the covers so I can build my own function based on it but for MODE?

Thanks in advance, Nic

share|improve this question
related? Adding Mode to this SQL – gbn Jun 20 '11 at 9:10
don't think so - I can calculate the MODE but not within a Standard Deviation context – newcube Jun 20 '11 at 9:15
Your question "Does anyone know what this is doing under the covers" prompts me to ask this: what is your current understanding of what the standard deviation is ? – AakashM Jun 20 '11 at 9:17
I understand the maths to a reasonable level, but I ask this because if the Function was written in C# I'd "reflector" it to see how it was written in order to create my own version, in theory copying the best practices therein. – newcube Jun 20 '11 at 9:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.