I have some positively-skewed data that appear to be log-normal. Does anyone know of a good way to compute the standard deviation and the mean? Usually, I'd use numpy.mean(arr, axis=0)
for general data, but because I believe I now also need to take the the log of the frequency as well to find the mean and standard deviation, I can't use that any more.
Any thought appreciated.