EXPAND ALL
  • Home

multiply

Multiplies the two values together. Accessible using the * operator syntax.

Returns: INT64

The product of `a` and `b`.

Arguments

VariableTypeDescription
aINT64 / FLOAT64The first value to multiply.
bINT64 / FLOAT64The second value to multiply.

Examples:

# Implicit call.
df.mult = df.duration * 2
# Explicit call.
df.mult = px.multiply(df.duration, 2)
This site uses cookies to provide you with a better user experience. By using Pixie, you consent to our use of cookies.