MCPcopy Create free account
hub / github.com/javascriptdata/danfojs / cumMin

Method cumMin

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

Source from the content-addressed store, hash-verified

1683 */
1684 cumMin(options?: { axis?: 0 | 1, inplace?: boolean }): DataFrame
1685 cumMin(options?: { axis?: 0 | 1, inplace?: boolean }): DataFrame | void {
1686 const { axis, inplace } = { axis: 1, inplace: false, ...options }
1687 return this.cumOps("min", axis, inplace);
1688 }
1689
1690 /**
1691 * Returns cumulative maximum accross specified axis.

Callers

nothing calls this directly

Calls 1

cumOpsMethod · 0.95

Tested by

no test coverage detected