How can I add a plot over a boxplot (same axis)?

조회 수: 16 (최근 30일)
Blabla
Blabla 2018년 5월 5일
댓글: Blabla 2018년 5월 6일
I have a figure with 96 boxplots that resulted from 10000 simulated forecasts. I need to plot the real observation dataset over it, but the 'hold on' command do not work. It simply plots the boxplot. My script is
figure
boxplot(xx',months,'PlotStyle','compact')
hold on
plot(months, si, 'r','LineWidth', 2)
both xx' and si have the same dimensions. xx' is 10000x97 and si 1x97.
Does someone have any idea how to include both plots in one figure??

채택된 답변

dpb
dpb 2018년 5월 6일
편집: dpb 2018년 5월 6일
Works ok here to plot() data on top of a boxplot; didn't use grouping variables though so the x-axes values are 1:N where N is the number of variables. I would presume that's what happens with a grouping variable but don't have anything handy to -- oh, wait a minute, ISTR one of the examples does use grouping -- yes, indeed. OK, starting from having data in the example,
figure
boxplot(MPG,Origin) % sample boxplot with grouping
hAx=gca; % retrieve the axes handle
xtk=hAx.XTick; % and the xtick values to plot() at...
hold on
hL=plot(xtk,rand(size(xtk))*50,'k-*'); % draw a line on top...
Seems to work just fine; I'm guessing you're not plotting at the correct x,y locations given the axis limits; particularly the x-axis being ordinal so XTick-->1:N, not the value of the grouping variable.
  댓글 수: 3
dpb
dpb 2018년 5월 6일
Thunk it wood... :) Was it the x positions that was the problem or something else before (just curious)?
Blabla
Blabla 2018년 5월 6일
The x position. I knew I had to redefine the axis but I had not idea how to write that. Thanks again :)

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

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by