Publications by Elliott

Project2

12.12.2024

library(tidycensus) ## Warning: package 'tidycensus' was built under R version 4.4.2 library(sf) ## Warning: package 'sf' was built under R version 4.4.2 ## Linking to GEOS 3.12.2, GDAL 3.9.3, PROJ 9.4.1; sf_use_s2() is TRUE library(tmap) ## Breaking News: tmap 3.x is retiring. Please test v4, e.g. with ## remotes::install_github('r-tmap/tmap') li...

840 sym R (14299 sym/40 pcs) 7 img

Assignment3

21.11.2024

#install.packages("dplyr") library(dplyr) ## Warning: package 'dplyr' was built under R version 4.4.2 ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union #install.packages("read...

1079 sym R (14112 sym/30 pcs) 3 img

Assignment5

20.11.2024

library(sf) ## Warning: package 'sf' was built under R version 4.4.2 ## Linking to GEOS 3.12.2, GDAL 3.9.3, PROJ 9.4.1; sf_use_s2() is TRUE library(tmap) ## Breaking News: tmap 3.x is retiring. Please test v4, e.g. with ## remotes::install_github('r-tmap/tmap') library(tigris) ## To enable caching of data, set `options(tigris_use_cache = TRUE)` #...

805 sym R (27943 sym/25 pcs) 3 img

Assignment4

19.11.2024

library(sf) ## Warning: package 'sf' was built under R version 4.4.2 ## Linking to GEOS 3.12.2, GDAL 3.9.3, PROJ 9.4.1; sf_use_s2() is TRUE library(tmap) ## Breaking News: tmap 3.x is retiring. Please test v4, e.g. with ## remotes::install_github('r-tmap/tmap') library(tidycensus) ## Warning: package 'tidycensus' was built under R version 4.4.2 li...

52 sym R (44806 sym/29 pcs) 1 img

Project 1

12.11.2024

#Load Libraries library(tidycensus) ## Warning: package 'tidycensus' was built under R version 4.4.2 library(dplyr) ## Warning: package 'dplyr' was built under R version 4.4.2 ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base...

1260 sym R (11957 sym/44 pcs) 5 img

Assignment2

02.10.2024

#1 Using your census API key, capture the median age of males (P013002) for all census tracts from the 2010 decennial census database in Texas. library(tidycensus) library(ggplot2) census_api_key("be13863f38ebdc792d7bf1fdbd7f8089b2a708f2",install="TRUE", overwrite = TRUE) ## Your original .Renviron will be backed up and stored in your R HOME d...

30 sym R (31556 sym/25 pcs) 2 img

Assignment 1

24.09.2024

d0<-read.csv("https://opportunityinsights.org/wp-content/uploads/2018/10/tract_covariates.csv") df <- d0[, c("czname", "hhinc_mean2000", "popdensity2000")] df_san_antonio <- df[df$czname == "San Antonio", ] library(ggplot2) ggplot(df_san_antonio, aes(x = hhinc_mean2000)) + geom_histogram(binwidth = 5000)+ labs(x = "Mean Household Income (2000...

25 sym R (1767 sym/16 pcs) 5 img

IS415 Take_Home_Ex02_Part3

19.05.2020

Data Used Aspatial listings.csv - Provided Geospatial MP14_SUBZONE_WEB_PL Install relevant R packages packages = c('rgdal', 'maptools', 'raster','spatstat', 'tmap','sf','SpatialEpi', 'tidyverse','spData') for (p in packages){ if(!require(p, character.only = T)){ install.packages(p) } library(p,character.only = T) } Import MP14_SUBZONE ...

4745 sym R (17829 sym/120 pcs) 21 img

IS415 Take_Home_Ex02_Part1

19.05.2020

Data Used Aspatial listings.csv - Provided Geospatial MP14_SUBZONE_WEB_PL 1. Aspatial/Geospatial Data Wrangling Install relevant R packages packages = c('rgdal', 'maptools', 'raster','spatstat', 'tmap','sf','SpatialEpi', 'tidyverse','spData') for (p in packages){ if(!require(p, character.only = T)){ install.packages(p) } library(p,chara...

16702 sym R (21394 sym/196 pcs) 34 img

IS415 Take_Home_Ex02_Part2

19.05.2020

Data Used Aspatial listings.csv - Provided Geospatial MP14_SUBZONE_WEB_PL Install relevant R packages packages = c('rgdal', 'maptools', 'raster','spatstat', 'tmap','sf','SpatialEpi', 'tidyverse','spData') for (p in packages){ if(!require(p, character.only = T)){ install.packages(p) } library(p,character.only = T) } Import MP14_SUBZONE ...

14091 sym R (35492 sym/122 pcs) 55 img