How can I create a stacked bar graph with the following chart?

조회 수: 2 (최근 30일)
A three by four table with categorical and numberic variables. Goal is to combine two categorical variables into one plot variable alongside the results. Example table is typed below:
Fastball Ball 10
Curveball Strike 15
Fastball Strike 20
Curveball Ball 25

채택된 답변

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 11월 9일
A = {'Fastball_{Ball}'; 'Curveball_{Strike}'; 'Fastball_{Strike}'; 'Curveball_{Ball}'}; A = categorical(A);
C = [10;15;20;25];
T = table(A); T.C=C; bar(T.A, T.C); %pie(T.A, T.C)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Directed Graphs에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by