EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
Multiplies the two values together. Accessible using the *
operator syntax.
The product of `a` and `b`.
Variable | Type | Description |
---|---|---|
a | INT64 / FLOAT64 | The first value to multiply. |
b | INT64 / FLOAT64 | The second value to multiply. |
# Implicit call.df.mult = df.duration * 2# Explicit call.df.mult = px.multiply(df.duration, 2)