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

Method le

src/danfojs-base/core/series.ts:1367–1369  ·  view source on GitHub ↗

* Returns Less than or Equal to of series and other. Supports element wise operations * @param other Series, number or Array of numbers to compare against * @example * ``` * const sf = new Series([1, 2, 3, 4, 5, 6]); * const sf2 = sf.le(3); * console.log(sf2

(other: Series | number | Array<number> | boolean[])

Source from the content-addressed store, hash-verified

1365 *
1366 */
1367 le(other: Series | number | Array<number> | boolean[]): Series {
1368 return this.boolOps(other, "le");
1369 }
1370
1371 /**
1372 * Returns Greater than or Equal to of series and other. Supports element wise operations

Callers

nothing calls this directly

Calls 1

boolOpsMethod · 0.95

Tested by

no test coverage detected