I need to change the number format in geom_text()
to include a comma.
I have seen the related questions and I can't get those solutions to work. I've tried the "sep =" one, the count/sum(count) kind, and some other code I just transcribed without knowing what anything meant. I need a lifeline here before this makes me crazy.
Here's my data:
N_PASSENGERS Count Mean_Dist Mean_Time Mean_Fare
<int> <int> <dbl> <dbl> <dbl>
1 1 57216 2.16 10.2 145.
2 2 8421 1.92 9.21 213.
3 3 2022 2.01 9.67 234.
4 4 572 1.96 9.22 351.
5 5 306 2.40 9.84 505.
6 6 184 1.90 7.63 446.
ggplot(Difference, aes(x = N_PASSENGERS, y = Mean_Dist, size = Count)) +
geom_point() +
scale_size(range = c(0, 20)) +
xlim(0, 6) +
ylim(1.75, 2.5) +
geom_text(aes(label = Count),
size = 3, vjust = 4.2,
WHAT THE HELL GOES HERE TO MAKE SOME COMMAS HAPPEN?) +
theme_minimal() +
theme(legend.position = "none") +
labs(x = "Number of Passengers",
y = "Mean Distance",
title = "Trips by Number of Rides and Distance") +
theme(plot.title = element_text(hjust = .5))
I would like to see numbers like 10,000 next to my data point. Instead I see numbers like 10000. I appreciate that this is a childishly simple question. I am trying to teach myself R so I appreciate any help with this.