how to make a heatmap for a monthly time serie?

조회 수: 7 (최근 30일)
Rt Ro
Rt Ro 2019년 12월 3일
댓글: Rt Ro 2019년 12월 3일
I have a monthly time series from jan1971 to dec 1986.
I want to make a heatmap to show the value of each month in each region.
whaen I use the heatmap structure, I should write the name of x-values. but they are192 and I can not write all of them.
xvalues = {'Jan-1971', Feb1971',..., 'Dec 1986'};
yvalues = {'A','B','C','D''};
h = heatmap(xvalues1,yvalues1,cdata1);
could you please let me know the best way to show the xvalues?
could you make the heatmap with the attached data?

채택된 답변

Kostas
Kostas 2019년 12월 3일
Based on the heatmap documentation
tbl = readtable('heatmap.test.xlsx');
months = categorical(tbl.Var2);
years = categorical(tbl.Var1);
xlabels = categories(months);
ylabels = categories(years);
nummonths = numel(xlabels);
numyears = numel(ylabels);
x = double(months);
y = double(years);
A = tbl.A;
cdata = accumarray([y,x],A,[numyears,nummonths],@mean,NaN);
h = heatmap(xlabels,ylabels,cdata);
  댓글 수: 6
Kostas
Kostas 2019년 12월 3일
Unfortunately i do not know how/if this can be done in heatmap. One solution could be to save the image in vector format and then change the labels you want using an image proseccing software.
Something else you could do so as to seem nicer, it would be to make a heatmap for each month seperately.
For example to get just for January you could change the "xDisplayData" as follow
xDisplay = h.xDisplayData;
Jan = xDisplayData(1:12:end);
h.xDisplayData = Jan;
And you can do the same for the rest of the months
% February
Feb = xDisplayData(2:12:end);
h.xDisplayData = Feb;
Rt Ro
Rt Ro 2019년 12월 3일
Thank you so much.
another person helped me with this code:
idx = month(t)==1; % index of datetime values to show as x tick
h.XDisplayLabels(~idx) = {''}; % replace rejected tick labels with empties
it works well:)

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Sean de Wolski
Sean de Wolski 2019년 12월 3일
Convert your x values to datetime. Then heatmap will just work:
dt = datetime('now'):hours(1):datetime('tomorrow');
v = rand(10,numel(dt));
heatmap(dt, 1:size(v,1), v)
  댓글 수: 5
Sean de Wolski
Sean de Wolski 2019년 12월 3일
Do you want to bin by month? instead of by hours or days?
Rt Ro
Rt Ro 2019년 12월 3일
Yes I want to show it by month. I could do it. Now, there are a lot of xdisplay labels (192) and I am trying to show each two year on the x axis not each month. Do you have any idea?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Distribution Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by