stdev
Description
Examples
import { from } from 'rxjs';
import { takeLast } from 'rxjs';
import { stdev, roundTo } from '@bottlenose/rxstats';
const stdev$ = from([600, 470, 170, 430, 300]).pipe(
stdev(),
takeLast(1),
roundTo(6)
);
stdev$.subscribe(console.log);
// Output:
// 164.71187API
Since
Parameters
Options
Returns
Arguments
Options
Last updated