For code/output blocks: Use ``` (aka backtick or grave accent) in a single line before and after the block. See: http://commonmark.org/help/
Standard Deviation for Sample
-
Hi there, I wanna check if there's only one class StandarDeviation to calculate the standard deviation of data population but not sample? I think in many cases we may want to use Std for sampling instead, is there any class/params/function for that? Thanks
-
@G3r-West I tried this, this helps fix this though not very elegant:
self.std = pow((pow(
btind.StandardDeviation(self.datas[0], period=self.params.maperiod),
2)
* self.params.maperiod) / (self.params.maperiod - 1), 0.5)Any other advice is welcomed.