How do i turn a line graph into a bar graph?

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

Answers (1)

plotyy is not recommended. Use yyaxis instead. For more information, see Compatibility Considerations.
Refer to the Examples of yyaxis & replace the plot function with bar function.

Products

Asked:

on 23 Apr 2020

Community Treasure Hunt

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

Start Hunting!