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

2 vues (au cours des 30 derniers jours)
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

Réponse acceptée

Sulaymon Eshkabilov
Sulaymon Eshkabilov le 9 Nov 2021
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)

Plus de réponses (0)

Catégories

En savoir plus sur Networks dans Help Center et File Exchange

Produits


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by