numpy.average() has a weights option, but numpy.std() does not. Do folks have suggestions for a workaround?
Thanks! /YGA
|
numpy.average() has a weights option, but numpy.std() does not. Do folks have suggestions for a workaround? Thanks! /YGA
| ||||
|
feedback
|
|
How about the following short "manual calculation"?
| |||
|
feedback
|
|
There doesn't appear to be such a function in numpy/scipy yet, but there is a ticket proposing this added functionality. Included there you will find Statitsics.py which implements weighted standard deviations. | |||
|
feedback
|
|
Using
from wikipedia, the following code should do the trick
if I didn't make a mistake in implementing it. w is the weights; x is the data. However, you might want to add a check to make sure that the denominator is not 0. | |||||
feedback
|