operator#
- class jsonpolars.expr.operator.Plus(type: str = 'plus', left: OtherExpr = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('REQUIRED'))[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.add.html
- class jsonpolars.expr.operator.Minus(type: str = 'minus', left: OtherExpr = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('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 = Sentinel('REQUIRED'), right: OtherExpr = Sentinel('REQUIRED'))[source]#
Ref: https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.Expr.or_.html