用法:
classmethod MultiIndex.from_tuples(tuples, sortorder=None, names=None)
將元組列表轉換為 MultiIndex。
- tuples:tuple-likes 的列表/序列
每個元組是一行/列的索引。
- sortorder:整數或無
排序級別(必須按該級別按字典順序排序)。
- names:str的列表/序列,可選
索引中級別的名稱。
- 多索引
參數:
返回:
例子:
>>> tuples = [(1, 'red'), (1, 'blue'), ... (2, 'red'), (2, 'blue')] >>> pd.MultiIndex.from_tuples(tuples, names=('number', 'color')) MultiIndex([(1, 'red'), (1, 'blue'), (2, 'red'), (2, 'blue')], names=['number', 'color'])
相關用法
- Python pandas.MultiIndex.from_frame用法及代碼示例
- Python pandas.MultiIndex.from_arrays用法及代碼示例
- 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_tuples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。