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

Method ge

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

* Returns Greater 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.ge(3); * console.log(

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

Source from the content-addressed store, hash-verified

1388 * ```
1389 */
1390 ge(other: Series | number | Array<number> | boolean[]): Series {
1391 return this.boolOps(other, "ge");
1392 }
1393
1394 /**
1395 * Returns Not 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