gpt4 book ai didi

python - 在 Pandas 中展平数据框

转载 作者:行者123 更新时间:2023-11-28 22:10:20 25 4
gpt4 key购买 nike

This is my dataframe

我有一个数据框,它有两列“年”和“月”以及 1 到 31 月的日期。现在,我需要一个有四列“年”、“月”、“日”和“值”的数据框'.就像下面这样:

Year  Month  Day Value
1989 1 1 0
1989 1 2 0
..................
..................
2018 12 1 5
2018 12 2 7

请帮我解决这个问题。提前致谢。

最佳答案

你想要melt ,将 YearMonth 设置为 id_vars:

df.melt(id_vars=['Year', 'Month'], var_name='Day')

关于python - 在 Pandas 中展平数据框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56883432/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com