舉一個簡單的pd.Series: #create the multiindex and data
mult = pd.MultiIndex.from_product([[1,2,3],[1,2,3]],names=['factor1','factor2'])
data = np.arange(1,4)*np.arange(1,4)[:,np.newaxis]
#create the ser
我正在尋找一種方法來按星期幾和/或選定日期篩選多索引數據框。假設我需要 查詢到select only mondays; 另一個查詢,其中我想select all days except monday and friday; 第三個查詢選擇日期輸入列表中的數據,如select all dates in ['2015-05-14', '2015-05-21', '2015-05-22']; 最後,查詢