gpt4 book ai didi

python - reshape 数据帧以与另一个数据帧具有相同的索引

转载 作者:行者123 更新时间:2023-12-02 04:06:23 25 4
gpt4 key购买 nike

我有两个数据框:

dayData


power_comparison final_average_delta_power calculated_power
1 0.0 0.0 0
2 0.0 0.0 0
3 0.0 0.0 0
4 0.0 0.0 0
5 0.0 0.0 0
7 0.0 0.0 0

historicPower

power
0 0.0
1 0.0
2 0.0
3 -1.0
4 0.0
5 1.0
7 0.0

我正在尝试重新索引 historicPower 数据帧,使其具有与 dayData 数据帧相同的形状(因此在本例中它看起来像这样):

   power

1 0.0
2 0.0
3 -1.0
4 0.0
5 1.0
7 0.0

现实中的数据框会更大,形状也不同。

最佳答案

我认为你可以使用reindex如果 index 没有重复项:

historicPower = historicPower.reindex(dayData.index) 
print (historicPower)
power
1 0.0
2 0.0
3 -1.0
4 0.0
5 1.0
7 0.0

关于python - reshape 数据帧以与另一个数据帧具有相同的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39248331/

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