I would like to adjust the text on the barplot.
I tried to adjust hjust/vjust to display as I like it but it seems like it's not working properly.
ggplot(data) +
geom_bar(aes(name, count,
fill = week), stat='identity', position = 'dodge') +
geom_text(aes(name,count,
label=count),hjust=0.5, vjust=3, size=2,
position = position_dodge(width = 1)) +
coord_flip()
So I would like the numbers to situate on each bar, in the middle, at the right-edge so it's readable without overlapping like the last parts.
Edit:
The easier solution to get
hjust
/vjust
to behave intelligently is to add thegroup
aesthetic togeom_text
and thenhjust
&position
adjust for thegroup
automatically.1. Vertical Orientation
This gives:
2. Horizontal Orientation
This gives:
This is not necessarily the most general way to do this, but you can have a
fill
dependenthjust
(orvjust
, depending on the orientation) variable. It is not entirely clear to me how to select the value of the adjustment parameter, and currently it is based on what looks right. Perhaps someone else can suggest a more general way of picking this parameter value.1. Vertical Orientation
Here is what that looks like:
2. Horizontal Orientation
Here is what that looks like:
The
position_dodge()
statement takes a width parameter. To ensure that the text is centred at the end of the bars (i.e., the dodging width for the bars and the text to be the same), give the same width parameter to theposition_dodge()
statement withingeom_bar
and withingeom_text
.There is also a width parameter for
geom_bar
, that is the width of the bars. If you want the bars to butt up against each other within eachname
, make the bar width the same as the dodging width; if you want a small gap between the bars, make the bar width a little less than the dodging width.If you use global aesthetics, you will not need a
group
aesthetic (however, using only local aesthetics, you will need a group aesthetic forgeom_text
).hjust = -0.5
will position the text labels just beyond the end of the bars;hjust = 1.5
positions them inside the end of the bars.