EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
This function is implicitly invoked by the + operator. If both types are strings, then will concate the strings. Trying to add any other type to a string will cause an error
The sum of a and b.
Variable | Type | Description |
---|---|---|
a | INT64 / FLOAT64 / STRING / TIME64NS | The value to be added to. |
b | INT64 / FLOAT64 / STRING / TIME64NS | The value to add to the first argument. |
# Implicit call.df.sum = df.a + df.bExplicit call.df.sum = px.add(df.a, df.b)