How to plot data as a time series in a figure

1 visualizzazione (ultimi 30 giorni)
HI,
I have a text file and I would like to plot the data as a time series in a figure.

Risposta accettata

Akira Agata
Akira Agata il 30 Ott 2019
How about the following?
T = readtable('data.txt','HeaderLines',3,'ReadVariableNames',false);
T.Properties.VariableNames = {'TIME_BEGIN','TIME_END','TEMPERATURE'};
T.TIME_BEGIN = datetime(num2str(T.TIME_BEGIN),'Format','yyyyMMdd');
T.TIME_END = datetime(num2str(T.TIME_END),'Format','yyyyMMdd');
Time = reshape(T{:,{'TIME_BEGIN','TIME_END'}}',[],1);
Temperature = repelem(T.TEMPERATURE,2,1);
figure
plot(Time,Temperature)
ylabel('Temperature','FontSize',16)
temperature.png
  2 Commenti
Haider Ali
Haider Ali il 30 Ott 2019
Its good. If , I would like to increase the number of years on X-asix. THen what should I change?
Haider Ali
Haider Ali il 30 Ott 2019
HI Akira,
I have sent you a message. I need to plot some more data. KIndly reply me back. Thanks a lot

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by