Error using boxchart on matrix data
이전 댓글 표시
I am trying to use boxchart() to plot a 3x44 double matrix in Matlab R2020b. Let's call my variable 'Y'. When I call boxchart(Y) I get the following error message:
% Error using boxchart (line 108)
% Data inputs must match the axis configuration. A numeric axis must have numeric data inputs or data inputs which can be converted to double.
Line 108 refers to this:
107 % Configure x-axis and convert xgroupdata to numeric
108 matlab.graphics.internal.configureAxes(cax,xgroupdata,ydata);
I get the same error message if I follow the tutorial here: openExample('graphics/CreateBoxChartsFromMatrixDataExample')
What may be the issue here?
댓글 수: 4
Cris LaPierre
2021년 5월 6일
Have you tried restarting MATLAB?
Yngve Bøe
2021년 5월 6일
Thorsten Becker
2021년 8월 25일
i hvae the same issue. I run 2021a
Cris LaPierre
2021년 8월 25일
Please share your code and the complete error message (all the red text)
답변 (1개)
Roelof du Plessis
2023년 1월 16일
2 개 추천
First create a new empty figure before running boxchart. A previous figure with a "hold on" can cause this error.
댓글 수: 2
Daniel Song
2023년 10월 27일
I had a similiar issue. This fixes it, thanks
Cris LaPierre
2023년 10월 27일
As a best practice, always pair a 'hold on' with a 'hold off'
카테고리
도움말 센터 및 File Exchange에서 Annotations에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!