EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
This function is implicitly invoked by the / operator.
The value of arg1 divided by arg2.
Variable | Type | Description |
---|---|---|
arg1 | INT64 / FLOAT64 | The value to divide. |
arg2 | INT64 / FLOAT64 | The value to divide the first argument by. |
# Implicit call.df.div = df.a / df.b# Explicit call.df.div = px.divide(df.a, df.b)