Difference between revisions of "Lesson07"

From ISSS608-Visual Analytics and Applications
Jump to navigation Jump to search
Line 30: Line 30:
  
  
<font size="5">'''Visualising and Analysing Geographical Data'''</font>
+
<font size="5">'''Programming Data Visualisation in R'''</font>
  
=Readings=
+
= Content =
  
==Core Reading==
+
*  Introduction to Tidyverse
 +
*  Data wrangling with tidyr and dplyr
 +
*  Programming data visualisation using ggplot2
 +
*  Programming interactive data visualisation with plotly R
  
* [https://www.yaaka.cc/unit/the-concept-of-map-symbols/ The Concept of Map Symbols]
 
* [https://www.axismaps.com/guide/univariate/proportional-symbols/ Proportional Symbols]
 
* [https://en.wikipedia.org/wiki/Choropleth_map Choropleth map]
 
* [https://www.axismaps.com/guide/univariate/choropleth/ Choropleth Maps]
 
* [https://www.axismaps.com/guide/data/data-classification/ The Basics of Data Classification]
 
  
 +
= Readings =
 +
 +
==Core Readings==
 +
* [https://vita.had.co.nz/papers/layered-grammar.html A Layered Grammar of Graphics]
 +
* [https://r4ds.had.co.nz/data-visualisation.html Chapter 3 Data Visualization], [https://r4ds.had.co.nz/exploratory-data-analysis.html Chapter 7 Exploratory Data Analysis] and [https://r4ds.had.co.nz/graphics-for-communication.html Chapter 28 Graphics for communication] of '''R for Data Science'''. 
 +
* [https://plot.ly/r/ Plotly R Open Source Graphing Library]
  
 
==Additional Readings==
 
==Additional Readings==
 +
* [https://r-graphics.org/index.html R Graphics Cookbook, 2nd edition]
 +
* [http://socviz.co/ Data Visualization: A practical introduction]
 +
* [https://viz-ggplot2.rsquaredacademy.com/ Data Visualization with ggplot2]
 +
* [https://plotly-r.com/index.html Interactive web-based data visualization with R, plotly, and shiny]
  
* [https://gisgeography.com/choropleth-maps-data-classification/ Choropleth Maps – A Guide to Data Classification]
 
* [https://www.axismaps.com/guide/multivariate/bivariate-choropleth/ Bivariate Choropleth]
 
* [http://andywoodruff.com/blog/value-by-alpha-maps/ Value-by-alpha maps]
 
* [https://blog.datawrapper.de/choroplethmaps/ What to consider when creating choropleth maps]
 
* [https://www.directionsmag.com/article/3363 Choropleth Mapping with Exploratory Data Analysis]
 
* [https://gisgeography.com/cartogram-maps/ Cartogram Maps: Data Visualization with Exaggeration]
 
* [https://en.wikipedia.org/wiki/Cartogram Cartogram]
 
 
 
=All About Tableau=
 
 
==Basic Tutorial==
 
 
* [https://www.tableau.com/learn/webinars/live-training-mapping#video Live Training: Mapping]
 
* [https://www.tableau.com/learn/tutorials/on-demand/getting-started-mapping?product=tableau_desktop%2Btableau_prep&version=tableau_desktop_2019_3%2Btableau_prep_2019_3_1&topic=mapping Getting Started with Mapping]
 
* [https://www.tableau.com/learn/tutorials/on-demand/maps-tableau?product=tableau_desktop%2Btableau_prep&version=tableau_desktop_2019_3%2Btableau_prep_2019_3_1&topic=mapping Maps in Tableau]
 
* [https://www.tableau.com/learn/tutorials/on-demand/editing-unrecognized-locations?product=tableau_desktop%2Btableau_prep&version=tableau_desktop_2019_3%2Btableau_prep_2019_3_1&topic=mapping Editing Unrecognized Location]
 
* [https://www.tableau.com/learn/tutorials/on-demand/spatial-files?product=tableau_desktop%2Btableau_prep&version=tableau_desktop_2019_3%2Btableau_prep_2019_3_1&topic=mapping Spatial Files]
 
* [https://www.tableau.com/learn/tutorials/on-demand/density-mark-type?product=tableau_desktop%2Btableau_prep&version=tableau_desktop_2019_3%2Btableau_prep_2019_3_1&topic=mapping The Density Mark Type (Heat maps)]
 
* [https://www.tableau.com/learn/tutorials/on-demand/expanding-tableaus-mapping-capabilities?product=tableau_desktop%2Btableau_prep&version=tableau_desktop_2019_3%2Btableau_prep_2019_3_1&topic=mapping Expanding Tableau's Mapping Capabilities]
 
* [https://www.tableau.com/learn/tutorials/on-demand/custom-geocoding?product=tableau_desktop%2Btableau_prep&version=tableau_desktop_2019_3%2Btableau_prep_2019_3_1&topic=mapping Custom Geocoding]
 
* [https://www.tableau.com/learn/tutorials/on-demand/polygon-maps?product=tableau_desktop%2Btableau_prep&version=tableau_desktop_2019_3%2Btableau_prep_2019_3_1&topic=mapping Polygon Maps]
 
* [https://www.tableau.com/learn/tutorials/on-demand/background-images?product=tableau_desktop%2Btableau_prep&version=tableau_desktop_2019_3%2Btableau_prep_2019_3_1&topic=mapping Background Images]
 
  
==Beyond the Basic==
+
= DataCamp Courses =  
  
* [https://www.tableau.com/learn/webinars/advanced-mapping-techniques-tableau Advanced Mapping with Tableau]
+
* Data Visualization with ggplot2 (Part 1)
* [https://www.tableau.com/learn/whitepapers/10-ways-add-value-your-dashboards-maps 10 ways to add value to your dashboards with maps]
+
* Data Visualization with ggplot2 (Part 2)
* [https://www.ryansleeper.com/3-ways-to-make-magnificent-maps-in-tableau/ 3 Ways to Make Magnificent Maps in Tableau]
+
* Data Visualization with ggplot2 (Part 3)
* [https://www.ryansleeper.com/how-to-make-trellis-tile-small-multiple-maps-in-tableau/ How to Make Trellis / Tile / Small Multiple Maps in Tableau]
+
* Interactive Data Visualization with plotly in R
 +
* Intermediate Interactive Data Visualization with plotly in R

Revision as of 07:24, 6 March 2020

Vaa logo.jpg ISSS608 Visual Analytics and Applications

About

Weekly Session

Assignment

Visual Analytics Project

Course Resources

 



Programming Data Visualisation in R

Content

  • Introduction to Tidyverse
  • Data wrangling with tidyr and dplyr
  • Programming data visualisation using ggplot2
  • Programming interactive data visualisation with plotly R


Readings

Core Readings

Additional Readings


DataCamp Courses

  • Data Visualization with ggplot2 (Part 1)
  • Data Visualization with ggplot2 (Part 2)
  • Data Visualization with ggplot2 (Part 3)
  • Interactive Data Visualization with plotly in R
  • Intermediate Interactive Data Visualization with plotly in R