Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在这行代码中使用任何参数吗
ds.sel(time = '2015-12-16T02:00:00').t2m.plot()
改变地块大小?
是的,只需将轴句柄传递给绘图方法:
fig, ax = plt.subplots(figsize=(3, 4)) ds.sel(time='2015-12-16T02:00:00').t2m.plot(ax=ax)