EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
This function is implicitly invoked by the - operator.
`a` with `b` subtracted from it.
Variable | Type | Description |
---|---|---|
a | INT64 / FLOAT64 / TIME64NS | The value to be subtracted from. |
b | INT64 / FLOAT64 / TIME64NS | The value to subtract. |
# Implicit call.df.subtracted = df.a - df.b# Explicit call.df.subtracted = px.subtract(df.a, df.b)