MCPcopy Index your code
hub / github.com/javascriptdata/danfojs / cumSum

Method cumSum

src/danfojs-base/core/frame.ts:1655–1658  ·  view source on GitHub ↗
(options?: { axis?: 0 | 1, inplace?: boolean })

Source from the content-addressed store, hash-verified

1653 */
1654 cumSum(options?: { axis?: 0 | 1, inplace?: boolean }): DataFrame
1655 cumSum(options?: { axis?: 0 | 1, inplace?: boolean }): DataFrame | void {
1656 const { axis, inplace } = { axis: 1, inplace: false, ...options }
1657 return this.cumOps("sum", axis, inplace);
1658 }
1659
1660 /**
1661 * Returns cumulative minimum accross specified axis.

Callers

nothing calls this directly

Calls 1

cumOpsMethod · 0.95

Tested by

no test coverage detected