mean dat = sum dat / (fromIntegral $ length dat)
stddev dat = sqrt . mean $ map ((**2) . (m -)) dat
where
m = mean dat
data is a keyword in Haskell, so I'm using dat instead.
This solution is not very memory efficient on long, lazily-computed lists. If you're dealing with one of those, you might want to write a recursive version instead.
This solution is not very memory efficient on long, lazily-computed lists. If you're dealing with one of those, you might want to write a recursive version instead.