フィルターのクリア

Plotting double vs datetime (DD-MM-YY), only the year is used from the datetime

15 ビュー (過去 30 日間)
I am trying to plot datetime data (y axis) against double precision (x axis), but only the year is extracted from the datetime data. The two data files are attached.
Based on the matlab doc and six similar inquiries on this question, this should work, but there's evidently something I'm missing.
  3 件のコメント
Walter Roberson
Walter Roberson 2023 年 11 月 6 日
Please be more specific about your plotting command. There are a fair number of different variables in the files.
Paul Barrette
Paul Barrette 2023 年 11 月 7 日
Thanks and sorry - I should have provided more information. I'll spend some time understanding those files first.

サインインしてコメントする。

採用された回答

Peter Perkins
Peter Perkins 2023 年 11 月 10 日
Paul, in addition to what Walter said, those mat files each contain a bunch of 23041xN variables. Likely you would benefit from storing all those in one timetable.
  1 件のコメント
Paul Barrette
Paul Barrette 2023 年 11 月 13 日
Yes, timetable is the way to go for what I'm working with.

サインインしてコメントする。

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2023 年 11 月 6 日
Speculating about what you are plotting:
If you
plot(SNOW_GP,DATE)
then your y axis has about 40 years. In order for it to be meaningful to display month as part of the output, you would need to have at least 80 yticks -- unless, that is, you wanted to do something like mark every 2 1/2 years.
You can use code such as
ax = gcal
ax.YRuler.TickLabelFormat = 'uuuu-mm';
but unless you yticks to include some mid-year dates, it is not going to be useful to do so.
  1 件のコメント
Paul Barrette
Paul Barrette 2023 年 11 月 7 日
Thank you for this, Walter. That does clarify the issue. I will spend more time on this.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

製品


リリース

R2023b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by