看过来
《pandas 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)用命名元组 namedtuple 构造一个 DataFrame,它有 a、b 两列,三行数据。其中 a 列值为 1、4、7,b 列值为 2、5、8,索引为 x、y、z。
即:
'''
a b
x 1 2
y 4 5
z 7 8
'''
Python 代码如下:
import pandas as pd
from collections import namedtuple
Point = namedtuple('Point', ['a', 'b'])
df = pd.DataFrame([Point(1, 2), Point(4, 5), Point(7, 8)],
index=['x', 'y', 'z'])
df
'''
a b
x 1 2
y 4 5
z 7 8
'''
查看相关链接中的知识。
(完)
更新时间:Nov. 3, 2024, 8:30 p.m. 标签:pandas python 习题 dataframe namedtuple