看过来
《pandas 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)如下有一个需要构造为 DataFrame 的数据 data,它是一个字典,字典的各个信息如下:
需要将这个 DataFrame 构造出来。
# 数据字典
data = {'index': ['x', 'y'],
'columns': ['a', 'b'],
'data': [[1, 2], [3, 4]],
'index_names': 'e',
'column_names': 'f'
}
# 构造完成的 DataFrame
'''
f a b
e
x 1 2
y 3 4
'''
Python 代码如下:
import pandas as pd
data = {'index': ['x', 'y'],
'columns': ['a', 'b'],
'data': [[1, 2], [3, 4]],
'index_names': 'e',
'column_names': 'f'
}
df = pd.DataFrame.from_dict(data, orient='tight')
df
'''
f a b
e
x 1 2
y 3 4
'''
# 查看行列索引名称
df.index
# Index(['x', 'y'], dtype='object', name='e')
df.columns
# Index(['a', 'b'], dtype='object', name='f')
查看相关链接中的知识。
(完)
更新时间:2024-08-23 09:31:14 标签:pandas python 习题 dataframe 字典