We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8087a3f commit 5d8bf10Copy full SHA for 5d8bf10
1 file changed
src/danfojs-base/aggregators/groupby.ts
@@ -441,6 +441,14 @@ export default class Groupby {
441
return this.operations("sum")
442
}
443
444
+ /**
445
+ * Obtain the standard deviation of columns for each group
446
+ * @returns DataFrame
447
+ */
448
+ std(): DataFrame{
449
+ return this.operations("std")
450
+ }
451
+
452
/**
453
* Obtain the variance of columns for each group
454
* @returns DataFrame
0 commit comments