plot a time series data

1 view (last 30 days)
neda fathi
neda fathi on 9 Sep 2022
Commented: Star Strider on 10 Sep 2022
I have a daily observation of price for 32 years. The first column is date and the second column is price.
I want to plot all the data( every days in month) but since the data period is too long, I want to write the years in the x-axis like a picture I attached.Data is attached.

Accepted Answer

Star Strider
Star Strider on 9 Sep 2022
Try this —
T1 = readtable('https://www.mathworks.com/matlabcentral/answers/uploaded_files/1120695/sample.csv', 'VariableNamingRule','preserve')
T1 = 1749×2 table
Date Adj Close __________ _________ 01/02/1990 24.87 02/02/1990 24.32 05/02/1990 24.54 06/02/1990 24.69 07/02/1990 24.29 08/02/1990 23.77 09/02/1990 23.69 12/02/1990 24.38 13/02/1990 23.76 14/02/1990 22.05 15/02/1990 19.71 16/02/1990 20.78 20/02/1990 22.78 21/02/1990 23.89 22/02/1990 22.54 23/02/1990 23.69
figure
plot(T1.Date, T1.('Adj Close'))
xtickformat('MMM dd yyyy')
set(gca,'XTickLabelRotation',90)
.
  4 Comments
neda fathi
neda fathi on 10 Sep 2022
This is perfect! Many many thanks!!!
Star Strider
Star Strider on 10 Sep 2022
As always, my pleasure!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!