Created
September 13, 2023 19:47
-
-
Save davidpeach/abe8ab004d19eeefeee086ab4e56a830 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library("tidyverse") | |
data <- read.csv("props.csv") | |
data %>% | |
filter(Semi_Detached_Average_Price < 200000) %>% | |
filter(Semi_Detached_Average_Price > 180000) %>% | |
filter( | |
Region_Name == "Warwickshire" | | |
Region_Name == "Staffordshire" | | |
Region_Name == "London" | |
) %>% | |
filter(Date > "2010-01-01") %>% | |
ggplot(aes( | |
Date, | |
Semi_Detached_Average_Price, | |
color = Region_Name | |
)) + | |
geom_point(size = 2) + | |
geom_line(size = 1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment