當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Pandas Panel.rfloordiv()用法及代碼示例


在 Pandas 中,Panel是一個非常重要的三維數據容器。 3個軸的名稱旨在為描述涉及麵板數據的操作,尤其是麵板數據的計量分析提供一些語義上的含義。

在 Pandas Panel.rfloordiv()函數用於獲取序列和數據幀/麵板的整數除法。

用法: Panel.rfloordiv(other, axis=0)

參數:
other: DataFrame 或麵板
axis:廣播軸

返回:麵板

代碼1:

# importing pandas module  
import pandas as pd  
import numpy as np  
  
df1 = pd.DataFrame({'a':['Geeks', 'For', 'geeks', 'real'],  
                    'b':[111, 123, 425, 1333]})  
  
df2 = pd.DataFrame({'a':['I', 'am', 'dataframe', 'two'],  
                    'b':[5, 5, 2, 10]})  
                      
data = {'item1':df1, 'item2':df2} 
  
# creating Panel  
panel = pd.Panel.from_dict(data, orient ='minor')  
print("panel['b'] is - \n\n", panel['b'])  
  
print("\nInteger Dividing panel['b'] with df2['b'] using rfloordiv() method - \n")  
print("\n", panel['b'].rfloordiv(df2['b'], axis = 0)) 
輸出:
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 rfloordiv() method - 


    item1  item2
0      0      1
1      0      1
2      0      1
3      0      1

代碼2:

# importing pandas module  
import pandas as pd  
import numpy as np  
  
df1 = pd.DataFrame({'a':['Geeks', 'For', 'geeks', 'for', 'real'],  
                    'b':[11, 1.025, 333, 114.48, 1333]})  
                      
df2 = pd.DataFrame({'a':['I', 'am', 'DataFrame', 'number', 'two'],  
                    'b':[3, 3, 3, 13, 27]})                      
                      
data = {'item1':df1, 'item2':df2}  
  
# creating Panel  
panel = pd.Panel.from_dict(data, orient ='minor')  
  
print("panel['b'] is - \n\n", panel['b'], '\n')  
  
print("\nInteger Dividing panel['b']['item1'] with df2['b'] or panel['b']['item2'] using rfloordiv() method - \n")  
print("\n", panel['b']['item1'].rfloordiv(df2['b'], axis = 0)) 
輸出:
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


相關用法


注:本文由純淨天空篩選整理自Shivam_k大神的英文原創作品 Python | Pandas Panel.rfloordiv()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。