-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathFIG0206.R
26 lines (20 loc) · 964 Bytes
/
FIG0206.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
rm(list=ls())
library(tidyverse)
library(lemon)
source("helper_functions.R")
source("theme/theme_swd.R")
theme_set(theme_swd())
df <- read_csv(file.path("data", "FIG0206-7.csv")) %>%
mutate(`Cost Per Mile` = as.numeric(str_remove_all(`Cost Per Mile`,"\\$")))
avg_miles <- mean(df$`Miles Driven`)
avg_cost <- mean(df$`Cost Per Mile`)
pt <- ggplot(df) +
geom_point(aes(x = `Miles Driven`,y = `Cost Per Mile`), color = GRAY9, size = 2.5) +
scale_y_continuous(breaks = seq(0,3.5,.5), limits = c(0,3), labels = scales::dollar_format()) +
scale_x_continuous(limits = c(0,4000), label = scales::comma) +
geom_point(x = avg_miles, y = avg_cost, size=3.5) +
geom_text(x = avg_miles, y = avg_cost, label = "AVG", hjust = 1.25) +
labs(title = "Cost per mile by miles driven", x = "Miles driven per month", y = "Cost per mile") +
coord_capped_cart(bottom = "right", left = "top")
pt %>%
save_and_show_plot(width = 5, height = 4, "FIG0206.png")