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

Method cumProd

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

Source from the content-addressed store, hash-verified

1623 */
1624 cumProd(options?: { axis?: 0 | 1, inplace?: boolean }): DataFrame
1625 cumProd(options?: { axis?: 0 | 1, inplace?: boolean }): DataFrame | void {
1626 const { axis, inplace } = { axis: 1, inplace: false, ...options }
1627 return this.cumOps("prod", axis, inplace);
1628 }
1629
1630 /**
1631 * Returns cumulative sum accross specified axis.

Callers

nothing calls this directly

Calls 1

cumOpsMethod · 0.95

Tested by

no test coverage detected