Hi everyone,
For the below bar chart
hotel_bookings %>%
ggplot() +
geom_bar(mapping = aes(x = hotel, fill = market_segment)) +
facet_wrap(~ market_segment, nrow = 4, scales = 'free') +
theme(
axis.title = element_text(size = 20),
axis.text.y = element_text(size = 15, angle = 45),
axis.text.x = element_text(size = 15, vjust = 0.5),
strip.text = element_text(size = 15)
)
Now I wanna add labels that shows the count of each hotel_booking inside or above the bars themselves. How could it be done ?
Thanks 