How do i turn a line graph into a bar graph?
Afficher commentaires plus anciens
How can I turn this data into a bar chart?
figure('Color', [1, 1, 1]) % New figure
ax = plotyy(weeks, weight, weekMid, poundsPerWeek); % Save axes
xlabel(ax(1), 'Weeks') % Label x-axis of left axis
ylabel(ax(1), 'Fetal weight (lbs)') % Label y-axis of left axis
ylabel(ax(2), 'Fetal growth rate (lbs/wk)') % Label y-axis of right axis
title('Characterization of fetal weight during pregnancy') % Title one of the axes
Réponses (1)
Srivardhan Gadila
le 1 Mai 2020
0 votes
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!