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

Method lt

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

* Returns less than 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.lt(3); * console.log(sf2.values);

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

Source from the content-addressed store, hash-verified

1318 * ```
1319 */
1320 lt(other: Series | number | Array<number> | boolean[]): Series {
1321 return this.boolOps(other, "lt");
1322 }
1323
1324 /**
1325 * Returns Greater than of series and other. Supports element wise operations

Callers

nothing calls this directly

Calls 1

boolOpsMethod · 0.95

Tested by

no test coverage detected