Python 未映射JupiterLab matplotlib线条图

Python 未映射JupiterLab matplotlib线条图,python,matplotlib,plot,linegraph,Python,Matplotlib,Plot,Linegraph,我正在尝试使用matplotlib inJupiterLab绘制线条图: ax = temp_time.plot(x ="longtime", y="temperature_ers_lite_1_wermser_0_elsys_0",figsize=(40, 15),title="Sensor_Data", lw=5, color="C1") temp_time.plot(x ="longtime"

我正在尝试使用matplotlib inJupiterLab绘制线条图:

ax = temp_time.plot(x ="longtime", y="temperature_ers_lite_1_wermser_0_elsys_0",figsize=(40, 15),title="Sensor_Data", lw=5, color="C1")
temp_time.plot(x ="longtime", y="temperature_ers_lite_2_wermser_0_elsys_0",ax=ax,color="C2")
temp_time.plot(x ="longtime", y="temperature_ers_lite_3_wermser_0_elsys_0",ax=ax,color="C3")
temp_time.plot(x ="longtime", y="temperature_ers_lite_4_wermser_0_elsys_0",ax=ax,color="C4")
temp_time.plot(x ="longtime", y="temperature_ers_lite_5_wermser_0_elsys_0",ax=ax,color="C5")
.....
结果:

使用“分散”时,一切正常:

我还试图更改我自己在折线图上的设置,但没有帮助