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

Method cumMax

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

Source from the content-addressed store, hash-verified

1713 */
1714 cumMax(options?: { axis?: 0 | 1, inplace?: boolean }): DataFrame
1715 cumMax(options?: { axis?: 0 | 1, inplace?: boolean }): DataFrame | void {
1716 const { axis, inplace } = { axis: 1, inplace: false, ...options }
1717 return this.cumOps("max", axis, inplace);
1718 }
1719
1720 /**
1721 * Internal helper function for cumulative operation on DataFrame

Callers

nothing calls this directly

Calls 1

cumOpsMethod · 0.95

Tested by

no test coverage detected