* 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[])
| 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 |