Pandas Panel.rfloordiv()
uses a function to get integer division of a row and dataframe / Panel.
Syntax: Panel.rfloordiv (other, axis = 0)
Parameters:
other: DataFrame or Panel
axis: Axis to broadcast overReturns: Panel
Code # 1:
|
Output:
panel [’b’] is - item1 item2 0 111 5 1 123 5 2 425 2 3 1333 10 Integer Dividing panel [’ b’] with df2 [’b’] using rflo ordiv () method - item1 item2 0 0 1 1 0 1 2 0 1 3 0 1
Code # 2:
|
Output:
panel [’b’] is - item1 item2 0 11.000 3 1 1.025 3 2 333.000 3 3 114.480 13 4 1333.000 27 Integer Dividing panel [’b’] [’ item1’] with df2 [’b’] or panel [’ b’] [’item2’] using rfloordiv () method - 0 0 1 2 2 0 3 0 4 0 dtype: float64