看过来
《pandas 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)根据以下要求构造一些 pandas 的索引对象(Index)?
lst = [1, 2, 3]
Python 代码如下:
import pandas as pd
lst = [1, 2, 3]
# 构造为一个标签值为 lst 的索引对象
pd.Index(lst)
# Index([1, 2, 3], dtype='int64')
# 构造为一个标签值为 lst 的索引对象,数据类型为浮点型
pd.Index(lst, dtype=float)
pd.Index(lst, dtype='float')
# Index([1.0, 2.0, 3.0], dtype='float64')
pd.Index(lst, dtype='float32')
# Index([1.0, 2.0, 3.0], dtype='float32')
# 构造为一个标签值为 lst 的索引对象,名称为 my_index
pd.Index(lst, name='my_index')
# Index([1, 2, 3], dtype='int64', name='my_index')
# 将这个索引对象,设置为一个 Series 的索引
idx = pd.Index(lst, name='my_index')
pd.Series(['a', 'b', 'c'], index=idx)
'''
my_index
1 a
2 b
3 c
dtype: object
'''
查看相关链接中的知识。
(完)
更新时间:2024-10-22 17:16:19 标签:pandas python 习题 索引