########################################################## # # Interactive Exploratory Data Visualization in R # A workshop introduction to loon and related packages # # Make sure you have first completed ALL preparations as found here. # # https://www.math.uwaterloo.ca/~rwoldfor/talks/InteractiveDataVisualization/SSC2020/interactiveVisualizationWorkshop.html # # # Just before the workshop begins # # Make sure you all packages are installed. # (Installation instructions were given in # https://www.math.uwaterloo.ca/~rwoldfor/talks/InteractiveDataVisualization/prep/Before_the_workshop.html # ) # # ################# # # Load loon.data # # devtools::install_github("great-northern-diver/loon.data")) library(loon.data) # See http://great-northern-diver.github.io/loon.data/ for all data # (or in R> help(package = "loon.data") ) # # load the first data set data(covidNZ) # ONLY IF THE ABOVE FAILS, you could uncomment the R code below # to update your loon.data package to the version containing covidNZ. # (You may have to restart the R Session first). # Failing means only that you haven't the most recent version of the loon.data package. # devtools::install_github("great-northern-diver/loon.data")) # # Other loon.data data sets being used # data(igg1) data(SAheart) data(minority) # ################# # # Load loon library(loon) # # loon data sets being used # data(olive) data(oliveAcids) # # The loon R manual is available online via l_web() ################# # # load other packages # library("ggplot2") library("dplyr") library("maps") library("magrittr") # The following is optional library("PairViz") ################# # # load loon.ggplot # library(loon.ggplot)