时间:2021-05-22
约定
MultiIndex
MultiIndex表示多级索引,它是从Index继承过来的,其中多级标签用元组对象来表示。
一、创建MultiIndex对象
创建方式一:元组列表
代码结果:
MultiIndex(levels=[['A', 'B'], ['x1', 'x2', 'y1', 'y2', 'y3']], labels=[[0, 0, 1, 1, 1], [0, 1, 2, 3, 4]], names=['class1', 'class2'])df1=DataFrame(np.random.randint(1,10,(5,3)),index=m_index1)df1代码结果:
0 1 2 class1 class2 A x1 7 4 8 x2 4 5 2 B y1 6 9 7 y2 2 1 6 y3 6 8 6
创建方式二:特定结构
例如**from_arrays()
class1=["A","A","B","B"]class2=["x1","x2","y1","y2"]m_index2=pd.MultiIndex.from_arrays([class1,class2],names=["class1","class2"])m_index2代码结果:
MultiIndex(levels=[['A', 'B'], ['x1', 'x2', 'y1', 'y2']], labels=[[0, 0, 1, 1], [0, 1, 2, 3]], names=['class1', 'class2'])df2=DataFrame(np.random.randint(1,10,(4,3)),index=m_index2)df2代码结果:
0 1 2 class1 class2 A x1 2 4 5 x2 3 5 9 B y1 7 1 2 y2 3 1 8
创建方式三:笛卡尔积
from_product()从多个集合的笛卡尔积创建MultiIndex对象。
m_index3=pd.MultiIndex.from_product([["A","B"],['x1','y1']],names=["class1","class2"])m_index3代码结果:
MultiIndex(levels=[['A', 'B'], ['x1', 'y1']], labels=[[0, 0, 1, 1], [0, 1, 0, 1]], names=['class1', 'class2'])df3=DataFrame(np.random.randint(1,10,(2,4)),columns=m_index3)df3代码结果:
class1 A B class2 x1 y1 x1 y1 0 2 9 1 8 1 5 2 5 2
二、MultiIndex对象属性
代码结果:
0 1 2 class1 class2 A x1 7 4 8 x2 4 5 2 B y1 6 9 7 y2 2 1 6 y3 6 8 6
m_index4=df1.indexprint(in1[0])代码结果:
('A', 'x1')
调用.get_loc()和.get_indexer()获取标签的下标:
代码结果:
1
[ 1 2 -1]
MultiIndex对象使用多个Index对象保存索引中每一级的标签:
代码结果:
Index(['A', 'B'], dtype='object', name='class1')Index(['x1', 'x2', 'y1', 'y2', 'y3'], dtype='object', name='class2')MultiIndex对象还有属性labels保存标签的下标:
代码结果:
FrozenNDArray([0, 0, 1, 1, 1], dtype='int8')FrozenNDArray([0, 1, 2, 3, 4], dtype='int8')以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在multiIndex中选定指定索引的行我们在用pandas类似groupby来使用多重index时,有时想要对多个level中的某个index对应的行进行操作
Kotlin单例实例详解单例的实现方法,可以通过同伴对象,或者lazy。示例:classHelloprivateconstructor(){companiono
这篇文章主要介绍了pandas和sparkdataframe互相转换实例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的
这篇文章主要介绍了pandas空数据处理方法详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下方法一:直接删
本文主要介绍了iOS中对象指针和基础数据类型如何进行强转,下面话不多说,直接来看示例详解。一、对象指针的强转:UIView*view=[UIViewnew];/