Publications by Harold Nelson

Playing with Palletes

04.11.2021

Playing with Palettes Harold Nelson 11/3/2021 Setup library(tidyverse) library(sf) library(tmap) Get Districts sd = st_read("saep_unsd10.shp") ## Reading layer `saep_unsd10' from data source ## `/Users/haroldnelson/Dropbox/WA Geodata/saep_unsd10.shp' using driver `ESRI Shapefile' ## Simple feature collection with 295 features and 144 field...

212 sym R (1359 sym/10 pcs) 3 img

OFM School District Data

04.11.2021

OFM School District Data Harold Nelson 11/3/2021 Setup library(tidyverse) library(sf) library(raster) library(tmap) Get Districts sd = st_read("saep_unsd10.shp") ## Reading layer `saep_unsd10' from data source ## `/Users/haroldnelson/Dropbox/WA Geodata/saep_unsd10.shp' using driver `ESRI Shapefile' ## Simple feature collection with 295 fea...

203 sym R (1267 sym/12 pcs) 4 img

Chapter 6

01.11.2021

Chapter 6 Harold Nelson 5/30/2021 Packages # install.packages("rasterVis") library(sf) # Classes a methods for spatial data - simple features library(raster) # Classes and methods for raster data library(rgdal) # functions for spatial data input/output library(RColorBrewer) # Creates nice color schemes library(raster...

491 sym R (8305 sym/37 pcs) 7 img

Counties from Tigris

01.11.2021

Counties from Tigris Harold Nelson 11/1/2021 Setup library(sf) ## Linking to GEOS 3.8.1, GDAL 3.2.1, PROJ 7.2.1 library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.5 ✓ purrr 0.3.4 #...

344 sym R (2128 sym/19 pcs) 2 img

DOH Data

01.11.2021

DOH Data Harold Nelson 10/21/2021 Setup Get County Borders load("counties_us.Rdata") str(counties_us) ## Classes 'sf' and 'data.frame': 3108 obs. of 10 variables: ## $ STATEFP : chr "24" "31" "37" "46" ... ## $ COUNTYFP: chr "510" "169" "077" "091" ... ## $ COUNTYNS: chr "01702381" "00835906" "01008556" "01265759" ... ## $ AFFGEOID:...

195 sym R (8736 sym/17 pcs) 3 img

Tobias Maps

18.10.2021

Tobias Maps Harold Nelson 10/17/2021 Setup library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.3 ✓ purrr 0.3.4 ## ✓ tibble 3.1.2 ✓ dplyr 1.0.6 ## ✓ tidyr 1.1.3 �...

371 sym R (4329 sym/35 pcs) 4 img

Tobias Streets

16.10.2021

Tobias Streets Harold Nelson 10/14/2021 Read the Tobias Streets Data Setup library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.3 ✓ purrr 0.3.4 ## ✓ tibble 3.1.2 ✓ dplyr ...

295 sym R (4046 sym/22 pcs) 1 img

Tobias Shoreline

15.10.2021

Tobias Shoreline Harold Nelson 10/11/2021 Use R to read the data from Tobias. Setup library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.3 ✓ purrr 0.3.4 ## ✓ tibble 3.1.2 ✓...

547 sym R (1385 sym/18 pcs) 2 img

Exponents and Logarithms

14.10.2021

Exponents and Logarithms Harold Nelson 2/22/2022 Principle 1 A log function reverses the action of the exponential function with the same base. This is one of two factual statements regarding this principle. \[a^{log_a(x)} = x\] Principle 1L \[log_aa^x = x\] Principle 2 First, let’s look at a particular example. Consider the expression \[2...

1329 sym

Pivot Join Summarize

04.10.2021

Pivot Join Summarize Harold Nelson 10/2/2021 Setup Get the socviz package and tidyverse. Build the counties dataframe as in the previous set of exercises. library(socviz) library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyvers...

1221 sym R (4527 sym/20 pcs) 5 img