source: node_modules/d3-array/src/deviation.js@ e4c61dd

Last change on this file since e4c61dd was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 164 bytes
Line 
1import variance from "./variance.js";
2
3export default function deviation(values, valueof) {
4 const v = variance(values, valueof);
5 return v ? Math.sqrt(v) : v;
6}
Note: See TracBrowser for help on using the repository browser.