operator#
- class jsonpolars.expr.operator.Plus(type: str = 'add', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.add.html
- class jsonpolars.expr.operator.Minus(type: str = 'sub', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.sub.html
- class jsonpolars.expr.operator.Multiply(type: str = 'mul', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.mul.html
- class jsonpolars.expr.operator.TrueDiv(type: str = 'truediv', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.truediv.html
- class jsonpolars.expr.operator.FloorDiv(type: str = 'floordiv', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.floordiv.html
- class jsonpolars.expr.operator.Negative(type: str = 'neg', expr: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.neg.html
- class jsonpolars.expr.operator.Pow(type: str = 'pow', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.pow.html
- class jsonpolars.expr.operator.Equal(type: str = 'eq', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.eq.html
- class jsonpolars.expr.operator.NotEqual(type: str = 'ne', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.ne.html
- class jsonpolars.expr.operator.GreatThan(type: str = 'gt', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.gt.html
- class jsonpolars.expr.operator.GreatThanOrEqual(type: str = 'ge', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.ge.html
- class jsonpolars.expr.operator.LessThan(type: str = 'lt', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.lt.html
- class jsonpolars.expr.operator.LessThanOrEqual(type: str = 'le', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.le.html
- class jsonpolars.expr.operator.LogicalAnd(type: str = 'and', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.and_.html
- class jsonpolars.expr.operator.LogicalOr(type: str = 'or', left: OtherExpr = _REQUIRED(), right: OtherExpr = _REQUIRED())[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.or_.html