用法:
classmethod MultiIndex.from_arrays(arrays, sortorder=None, names=NoDefault.no_default)
將數組轉換為 MultiIndex。
- arrays:array-likes 的列表/序列
每個array-like 為每個數據點提供一個級別的值。 len(arrays) 是層數。
- sortorder:整數或無
排序級別(必須按該級別按字典順序排序)。
- names:str的列表/序列,可選
索引中級別的名稱。
- 多索引
參數:
返回:
例子:
>>> arrays = [[1, 1, 2, 2], ['red', 'blue', 'red', 'blue']] >>> pd.MultiIndex.from_arrays(arrays, names=('number', 'color')) MultiIndex([(1, 'red'), (1, 'blue'), (2, 'red'), (2, 'blue')], names=['number', 'color'])
相關用法
- Python pandas.MultiIndex.from_frame用法及代碼示例
- Python pandas.MultiIndex.from_tuples用法及代碼示例
- Python pandas.MultiIndex.from_product用法及代碼示例
- Python pandas.MultiIndex.get_loc_level用法及代碼示例
- Python pandas.MultiIndex.set_levels用法及代碼示例
- Python pandas.MultiIndex.get_loc用法及代碼示例
- Python pandas.MultiIndex.nlevels用法及代碼示例
- Python pandas.MultiIndex.droplevel用法及代碼示例
- Python pandas.MultiIndex.sortlevel用法及代碼示例
- Python pandas.MultiIndex.to_flat_index用法及代碼示例
- Python pandas.MultiIndex.reorder_levels用法及代碼示例
- Python pandas.MultiIndex.to_frame用法及代碼示例
- Python pandas.MultiIndex.levshape用法及代碼示例
- Python pandas.MultiIndex.names用法及代碼示例
- Python pandas.MultiIndex.get_indexer用法及代碼示例
- Python pandas.MultiIndex.get_locs用法及代碼示例
- Python pandas.MultiIndex.remove_unused_levels用法及代碼示例
- Python pandas.MultiIndex.swaplevel用法及代碼示例
- Python pandas MultiIndex.is_lexsorted用法及代碼示例
- Python pandas.MultiIndex.get_level_values用法及代碼示例
注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.MultiIndex.from_arrays。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。