gpt4 book ai didi

python - 绘制不包括 pandas 或 matplotlib 中缺失值的图形

转载 作者:太空宇宙 更新时间:2023-11-04 00:24:53 24 4
gpt4 key购买 nike

我是 Pandas 时间序列编程的新手。这是示例数据:

                     date       2      3      4  ShiftedPrice
0 2017-11-05 09:20:01.134 2123.0 12.23 34.12 300.0
1 2017-11-05 09:20:01.789 2133.0 32.43 45.62 330.0
2 2017-11-05 09:20:02.238 2423.0 35.43 55.62 NaN
3 2017-11-05 09:20:02.567 3423.0 65.43 56.62 NaN
4 2017-11-05 09:20:02.948 2463.0 45.43 58.62 NaN

我想为所有没有 ShiftedPrice 列缺失值的对绘制日期与 ShiftedPrice。您可以假设数据列中绝对没有缺失值。所以请在这方面帮助我。

最佳答案

您可以先通过 dropna 删除 NaN 行:

df = df.dropna(subset=['ShiftedPrice'])

然后 plot :

df.plot(x='date', y='ShiftedPrice')

一起:

df.dropna(subset=['ShiftedPrice']).plot(x='date', y='ShiftedPrice')

关于python - 绘制不包括 pandas 或 matplotlib 中缺失值的图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47881867/

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