Plotting weather graphs so subsequent years are superimposed rather than sequential

3 次查看(过去 30 天)
I have many years of weather data to plot. At present the data is all in one long column. But I don't want the graph to be one long graph, I want each different year of data to be superimposed on the same axis so I can make comparisons from year to year.
Some sample data is attached.
Much appreciated.
Wendy

回答(1 个)

KSSV
KSSV 2019-2-5
T = readtable('Matlab graph question.xlsx') ;
theyears = year(T.(1)) ;
[c,ia,ib] = unique(theyears) ;
c(isnan(c)) = [] ;
% plot 2018 year data
idx = theyears==2018 ;
plot(T.(1)(idx),T.(2)(idx))

类别

Help CenterFile Exchange 中查找有关 Directed Graphs 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by