I'm trying to really understand what SD is telling me, but the information out there is sparse and confusing.
This thread and some others as well provide the answer that SD is L2 distance in euclidian space, and that each of the variables are actually dimensions.
But the formula for distance is sqr((q1-p1)^2+(q2-p2)^2+...+(qn-pn)^2).
if we put our variables and mean into it, we'd get: sqr((x1-m)^2+(x2-m)^2+...+(xn-m)^2)
which is close, but not quite, since SD=sqr(((x1-m)^2+(x2-m)^2+...+(xn-m)^2)/(n-1))
What does that (n-1) do in terms of euclidian distance? I mean, aren't we measuring a distance from one point(x1, x2, ...xn) to (m,m,..,m)?
What does /(n-1) before sqrrooting do in terms of distance?