Python绘制缺失数据

时间:2018-06-12 16:04:29

标签: python matplotlib plot

day = ([ 1 , 2 , 5 , 6 , 7 , 8 , 9])
rain = ([0.6 , 0.8 , 1 , 6 , 6.5 ,7 , 4])
snow = ([ 1 , 2 , 0.5 , 7 , 8 , 9 , 10])

如果我想在x轴上绘制日,在y轴上绘制雨雪,例如,在缺少信息的日子有一条虚线连接,我该怎么做?

    plt.figure()
    plt.plot(day,rain,  marker='o')
    plt.plot(day, snow, marker='o')
    plt.show()

1 个答案:

答案 0 :(得分:0)

这是一个解决方案。

Not Found

enter image description here