EXPAND ALL
  • Home

divide

This function is implicitly invoked by the / operator.

Returns: FLOAT64

The value of arg1 divided by arg2.

Arguments

VariableTypeDescription
arg1INT64 / FLOAT64The value to divide.
arg2INT64 / FLOAT64The value to divide the first argument by.

Examples:

# Implicit call.
df.div = df.a / df.b
# Explicit call.
df.div = px.divide(df.a, df.b)
This site uses cookies to provide you with a better user experience. By using Pixie, you consent to our use of cookies.