-
Dear friends, I have a dataset of OLR from 1986-2013 (daily data), and I am interested in plotting a time series which should have only boreal winter months i.e. from November to April. Kindly plz tell me how to plot this time series properly. I am attaching a plot also for the reference. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The issue is that matplotlib is interpreting the time axis properly. If you really want different output I would drop the TIME variable: |
Beta Was this translation helpful? Give feedback.
The issue is that matplotlib is interpreting the time axis properly. If you really want different output I would drop the TIME variable:
OLRNA.drop_vars("TIME").plot()
You'll just have an integer x-axis.