DataFrame.rdiv()
pandas.DataFrame.rdiv
-
DataFrame.rdiv(other, axis='columns', level=None, fill_value=None)
-
Floating division of dataframe and other, element-wise (binary operator
rtruediv
).Equivalent to
other / dataframe
, but with support to substitute a fill_value for missing data in one of the inputs.Parameters: other : Series, DataFrame, or constant
axis : {0, 1, ‘index’, ‘columns’}
For Series input, axis to match Series index on
fill_value : None or float value, default None
Fill missing (NaN) values with this value. If both DataFrame locations are missing, the