How can I move the bars in a bar chart?

51 visualizzazioni (ultimi 30 giorni)
Catayoun Lissa Eleonore Azarm
Risposto: David Hill il 12 Gen 2021
Hey! can someone help me? i want my graph to look like the 2nd one, but it looks like the first. so the bars are moved. and i dont kno how to move them.Greets
  4 Commenti
the cyclist
the cyclist il 12 Gen 2021
It would be easiest to help you if you uploaded both the data and the code that generated your figure, so that we can see exactly how you did it, recreate the figure, and help you fix it.
If that is not possible for some reason, at the very least please post the commands you used to plot the bars, plot the line, and create the x-axis labels.
Adam Danz
Adam Danz il 12 Gen 2021
As the cyclist pointed out, we don't know how your plots were created so we can't be certain what's wrong.
For example, are the month labels a result of specifying xtick and xticklabel or are your data categorical or datetime values?
My guess is that you're specifying x-ticks with datetime values but the x-values are not on the first day of the month. The problem could be fixed using dateshift to shift the dates to the 1st of the month but there are better ways such as specifying xtickformat.

Accedi per commentare.

Risposte (1)

David Hill
David Hill il 12 Gen 2021
figure;
bar_displacement=.25;%play with this until it is correct
bar(x-bar_displacement,y);
set(gca,'XTick', x);

Categorie

Scopri di più su Axes Appearance in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by