csss 569 visualizing data and models
play

CSSS 569 Visualizing Data and Models Lab 7: Visualizing Spatial Data - PowerPoint PPT Presentation

CSSS 569 Visualizing Data and Models Lab 7: Visualizing Spatial Data Kai Ping (Brian) Leung Department of Political Science, UW February 20, 2020 Introduction GRL RUS CAN KAZ MNG USA CHN IRN DZA LBY MEX SAU IND MLI NER TCD SDN


  1. CSSS 569 Visualizing Data and Models Lab 7: Visualizing Spatial Data Kai Ping (Brian) Leung Department of Political Science, UW February 20, 2020

  2. Introduction GRL RUS CAN KAZ MNG USA CHN IRN DZA LBY MEX SAU IND MLI NER TCD SDN Income class ETH 1. High income: OECD COL 2. High income: nonOECD COD IDN 3. Upper middle income 4. Lower middle income PER BRA 5. Low income AGO BOL Metro population (2020) AUS ZAF 10 mln 20 mln 30 mln 40 mln ARG Population growth (%) Less than 0 0 to 10 10 to 20 20 to 30 30 or more ATA

  3. Introduction Rent in 2008 Hispanic population in 2008 (%) % of households receiving 0 to 500 0 to 10 public assistance in 2000 500 to 1,000 10 to 20 1,000 to 1,500 20 to 30 0 to 5 1,500 to 2,000 30 to 40 5 to 10 2,000 to 2,500 40 to 50 10 to 15 2,500 to 3,000 50 to 60 15 to 20 60 to 70 20 to 25

  4. Dealing with and visualizing spatial data in R ◮ Numerous spatial data formats

  5. Dealing with and visualizing spatial data in R ◮ Numerous spatial data formats ◮ .shp (shapefile; the most common); .geojson , .json ; .gml ; .csv ; .tiff . . .

  6. Dealing with and visualizing spatial data in R ◮ Numerous spatial data formats ◮ .shp (shapefile; the most common); .geojson , .json ; .gml ; .csv ; .tiff . . . ◮ Countless packages to work with spatial data

  7. Dealing with and visualizing spatial data in R ◮ Numerous spatial data formats ◮ .shp (shapefile; the most common); .geojson , .json ; .gml ; .csv ; .tiff . . . ◮ Countless packages to work with spatial data ◮ Recent package sf allows geospatial data to be stored in data frames

  8. Dealing with and visualizing spatial data in R ◮ Numerous spatial data formats ◮ .shp (shapefile; the most common); .geojson , .json ; .gml ; .csv ; .tiff . . . ◮ Countless packages to work with spatial data ◮ Recent package sf allows geospatial data to be stored in data frames ◮ Well integrated with tidyverse

  9. Dealing with and visualizing spatial data in R ◮ Numerous spatial data formats ◮ .shp (shapefile; the most common); .geojson , .json ; .gml ; .csv ; .tiff . . . ◮ Countless packages to work with spatial data ◮ Recent package sf allows geospatial data to be stored in data frames ◮ Well integrated with tidyverse ◮ Many packages to draw maps

  10. Dealing with and visualizing spatial data in R ◮ Numerous spatial data formats ◮ .shp (shapefile; the most common); .geojson , .json ; .gml ; .csv ; .tiff . . . ◮ Countless packages to work with spatial data ◮ Recent package sf allows geospatial data to be stored in data frames ◮ Well integrated with tidyverse ◮ Many packages to draw maps ◮ tmap allows easy visualization of static and interactive maps

  11. Dealing with and visualizing spatial data in R ◮ Numerous spatial data formats ◮ .shp (shapefile; the most common); .geojson , .json ; .gml ; .csv ; .tiff . . . ◮ Countless packages to work with spatial data ◮ Recent package sf allows geospatial data to be stored in data frames ◮ Well integrated with tidyverse ◮ Many packages to draw maps ◮ tmap allows easy visualization of static and interactive maps ◮ Also employs the “grammar of graphics”

  12. Overview of tmap package ggplot2 tmap Data ggplot(...) + tm_shape(...) + Layers geom_...(...) + tm_...(...) + Small Multiples facet_grid(...) tm_facets(...) Layout theme(...) tm_layout(...)

  13. Prerequisite install.packages ( c ("sf", "tmap")) # Load packages library (tidyverse) library (sf) library (tmap) # Load data (from tmap) data (World, metro)

  14. Basics tmap print (World[1,]) ## Simple feature collection with 1 feature and 15 fields ## geometry type: MULTIPOLYGON ## dimension: XY ## bbox: xmin: 5298517 ymin: 3762310 xmax: 6474206 ymax: 4839642 ## epsg (SRID): NA ## proj4string: +proj=eck4 +lon_0=0 +x_0=0 +y_0=0 +datum=WGS84 +units=m +no_defs ## iso_a3 name sovereignt continent area ## 1 AFG Afghanistan Afghanistan Asia 652860 [km^2] ## pop_est pop_est_dens economy ## 1 28400000 43.5009 7. Least developed region ## income_grp gdp_cap_est life_exp well_being footprint ## 1 5. Low income 784.1549 59.668 3.8 0.79 ## inequality HPI geometry ## 1 0.4265574 20.22535 MULTIPOLYGON (((5310471 451...

  15. Basics tmap tm_shape (World) + tm_polygons () + tm_layout (frame = FALSE)

  16. Basics tmap tm_polygons() is composed of two parts: tm_borders() and tm_fill() tm_shape (World) + tm_borders () + tm_layout (frame = FALSE)

  17. Basics tmap tm_polygons() is composed of two parts: tm_borders() and tm_fill() tm_shape (World) + tm_fill () + tm_layout (frame = FALSE)

  18. Basics tmap tm_polygons() is composed of two parts: tm_borders() and tm_fill() tm_shape (World) + tm_borders () + tm_fill () + tm_layout (frame = FALSE)

  19. Basics tmap tm_polygons() is composed of two parts: tm_borders() and tm_fill() tm_shape (World) + tm_borders (lty = 2) + tm_fill () + tm_layout (frame = FALSE)

  20. Basics tmap tm_shape (World) + tm_polygons () + tm_layout (frame = FALSE)

  21. Basics tmap All palettes from RColorBrewer are supported tm_shape (World) + tm_polygons (col = "income_grp", palette = "-Blues") + tm_layout (frame = FALSE) income_grp 1. High income: OECD 2. High income: nonOECD 3. Upper middle income 4. Lower middle income 5. Low income

  22. Basics tmap Use white border to give it a “modern” look tm_shape (World) + tm_polygons (col = "income_grp", palette = "-Blues", border.col = "white", border.alpha = 0.5) + tm_layout (frame = FALSE) income_grp 1. High income: OECD 2. High income: nonOECD 3. Upper middle income 4. Lower middle income 5. Low income

  23. Basics tmap Legend title: tm_shape (World) + tm_polygons (col = "income_grp", palette = "-Blues", border.col = "white", border.alpha = 0.5, title = "Income class") + tm_layout (frame = FALSE) Income class 1. High income: OECD 2. High income: nonOECD 3. Upper middle income 4. Lower middle income 5. Low income

  24. Basics tmap Add country labels as an additional layer: tm_shape (World) + tm_polygons (col = "income_grp", palette = "-Blues", border.col = "white", border.alpha = 0.5, title = "Income class") + tm_text (text = "iso_a3", size = "AREA", col = "grey25") + tm_layout (frame = FALSE) GRL RUS CAN KAZ MNG USA CHN IRN DZA LBY MEX SAU IND MLI NER SDN TCD ETH COL IDN COD PER BRA AGO BOL AUS ZAF ARG Income class 1. High income: OECD 2. High income: nonOECD 3. Upper middle income 4. Lower middle income ATA 5. Low income

  25. Basics tmap worldMap <- tm_shape (World) + tm_polygons (col = "income_grp", palette = "-Blues", border.col = "white", border.alpha = 0.5, title = "Income class") + tm_text (text = "iso_a3", size = "AREA", col = "grey25") + tm_layout (frame = FALSE)

  26. Basics tmap Let’s add another dimension of information: cities’ population metro <- metro %>% mutate (growth = (pop2020 - pop2010) / pop2010 * 100) print (metro[1, ]) ## Simple feature collection with 1 feature and 13 fields ## geometry type: POINT ## dimension: XY ## bbox: xmin: 69.17246 ymin: 34.52889 xmax: 69.17246 ymax: 34.52889 ## epsg (SRID): 4326 ## proj4string: +proj=longlat +datum=WGS84 +no_defs ## name name_long iso_a3 pop1950 pop1960 pop1970 pop1980 ## 1 Kabul Kabul AFG 170784 285352 471891 977824 ## pop1990 pop2000 pop2010 pop2020 pop2030 ## 1 1549320 2401109 3722320 5721697 8279607 ## geometry growth ## 1 POINT (69.17246 34.52889) 53.71319

  27. Basics tmap worldMap + tm_shape (metro) + tm_bubbles (size = "pop2020") GRL RUS CAN KAZ MNG USA CHN IRN DZA LBY SAU MEX IND MLI NER SDN TCD ETH COL IDN COD PER BRA AGO BOL Income class AUS 1. High income: OECD ZAF 2. High income: nonOECD ARG 3. Upper middle income 4. Lower middle income 5. Low income pop2020 ATA 10 mln 20 mln 30 mln 40 mln

  28. Basics tmap worldMap + tm_shape (metro) + tm_bubbles (size = "pop2020", col = "growth") GRL RUS CAN KAZ MNG USA CHN IRN DZA LBY SAU MEX IND MLI NER SDN TCD ETH Income class COL 1. High income: OECD IDN COD 2. High income: nonOECD 3. Upper middle income PER BRA AGO 4. Lower middle income 5. Low income BOL pop2020 AUS ZAF ARG 10 mln 20 mln 30 mln 40 mln growth −50 to 0 0 to 50 50 to 100 ATA 100 to 150

  29. Basics tmap worldMap + tm_shape (metro) + tm_bubbles (size = "pop2020", col = "growth", palette = "-RdYlGn", midpoint = NA) GRL RUS CAN KAZ MNG USA CHN IRN DZA LBY MEX SAU IND MLI NER SDN TCD ETH Income class COL 1. High income: OECD IDN COD 2. High income: nonOECD 3. Upper middle income PER BRA AGO 4. Lower middle income 5. Low income BOL pop2020 AUS ZAF ARG 10 mln 20 mln 30 mln 40 mln growth −50 to 0 0 to 50 50 to 100 ATA 100 to 150

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend