How to use boxchart 'GroupByColor'
조회 수: 4 (최근 30일)
이전 댓글 표시
Wrong use of matlab.graphics.chart.primitive.BoxChart
Name 'GroupByColor' is not a property that can be accessed by instances of class 'matlab.graphics.chart.primitive.BoxChart'.
When I use the sample proxy in the help documentation, I always get the error above.
It seems that I cannot use the syntax
boxchart(___,'GroupByColor',cgroupdata)
댓글 수: 0
채택된 답변
Cris LaPierre
2021년 12월 23일
편집: Cris LaPierre
2021년 12월 23일
The ability to group by color was added in R2020b (see this release note). If you have the Statistics and Machine Learning toolbox, you can look into using boxplot instead.
load patients
Smoker = categorical(Smoker,logical([1 0]),{'Smoker','Nonsmoker'});
boxplot(Systolic,Smoker)
ylabel('Systolic Blood Pressure')
legend
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
