我有 x 和 y 的数据
我想创建每条线的小型多折线图。我尝试了此页面中的代码。我修改了几行以匹配我的代码。这是我的代码:
fig, axs = plt.subplots(4, 5, figsize = (15,15))
ylim = (-100, 55)
k = 0
for i in range(4):
for j in range(5):
to_plot = real.loc[real['order_number'] == orderlist[k]]
axs[i,j].plot(to_plot['event_timestamp'], to_plot['altitude_in_meters'])
axs[i,j].plot(to_plot['event_timestamp'], to_plot['RASTERVALU'])
k+=1
这orderlist是一个包含订单号的列表。我想让每个图表对 y 轴具有相同的限制,但ylim = (-100,55)不做这项工作,而是让这张图表具有不同的 y 轴。
大话西游666
相关分类