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