I want to make a horizontal bar chart with labels on the bars, at their "bases"
dummy <- USArrests
dummy$state <- rownames(USArrests)
ggplot(
data = dummy,
aes(
x = state,
y = Murder
)
) +
geom_bar(
stat = "identity"
) +
coord_flip() +
geom_text(
aes(
label = state
),
position = position_dodge(1)
)
This gives me a chart where the labels are at each bar's "tip." 
How do I move those labels to the "base" of each bar? The left side of each state's name should be at the left side of the bars.

