필터 지우기
필터 지우기

multiple comparisons test figure object selection

조회 수: 4 (최근 30일)
Luck Haviland
Luck Haviland 2023년 2월 16일
댓글: the cyclist 2023년 2월 19일
I have a done a multiple comparisons test using the command multcompare. Say for example I have the following image:
load carsmall
[p,t,stats] = anova1(MPG,Origin);
[c,m,h,gnames] = multcompare(stats);
I want to be able to automatically select which group to highlight blue via code, as I am trying to automatically save my figure with exportfigure.
I suspect the command to highlight the group blue is something like
f=gcf
f.Children.SelectObject=2
I am pretty sure I have been able to do it before, but I can't for the life of me remember what command I used, or where I put the code I used before.
I would greatly appreciate any help on this.
Thank you,
Luck

답변 (1개)

the cyclist
the cyclist 2023년 2월 16일
The only way I could see to do this is to set the control type to "dunnett", and set the control group.
load carsmall
[p,t,stats] = anova1(MPG,Origin);
% Set the desired control group name, and the index will then be found programatically
controlGroup = "Japan";
controlIndex = find(stats.gnames==controlGroup);
[c,m,h,gnames] = multcompare(stats,"CriticalValueType","dunnett","ControlGroup",controlIndex);
I admit that I don't understand why this method relinquishes the ability to interact with the chart to change the control group, or why the error bars on the control group go away.
  댓글 수: 2
Luck Haviland
Luck Haviland 2023년 2월 19일
편집: Luck Haviland 2023년 2월 19일
Thank you for your contribution, the cyclist. While this is interesting, I require the standard deviation bars to stay there for my final pictures, so I cannot accept this as an answer.
My apologies,
Luck
the cyclist
the cyclist 2023년 2월 19일
Most of the multcompare code is written in MATLAB (as opposed to being buried in internal C code or whatever), so it is conceivable to me that you could dig into where this is happening, and make your own version. Be careful not to overwrite the original.

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

카테고리

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

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by