Skip to content

Instantly share code, notes, and snippets.

@smach
Created June 20, 2019 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smach/361993d391a3a6ad5c8a8f21f834b41e to your computer and use it in GitHub Desktop.
Save smach/361993d391a3a6ad5c8a8f21f834b41e to your computer and use it in GitHub Desktop.
See how readr imports Zip Codes compared with base R
price_median1 <- readr::read_csv("https://raw.githubusercontent.com/smach/BU-dataviz-workshop-2019/master/data/zillow_data_median_sf_price.csv")
str(price_median1)
price_median2 <- read.csv("https://raw.githubusercontent.com/smach/BU-dataviz-workshop-2019/master/data/zillow_data_median_sf_price.csv")
str(price_median2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment