Population, Selection, and Coverage

Data Camp

Please go through and complete the following module

LinkDue byRequiredTaskModuleChapters
Week 39/6/22Introduction to Data Visualization with ggplot2Explore your data
Tame your data
Tidy your data
Transform your data

esquisse

This is optional, but will be helpful for many of you. If you would like to explore ggplot2 using a more drag and drop approach, try the R package esquisse


After downloading and unzipping the file above, open up RStudio and run

install.packages("esquisse", dependencies = TRUE)

You’ll also need to install the example data set palmerpenguins by running

install.packages("palmerpenguins", dependencies = TRUE)

If prompted, you may receive the option to restart RStudio. This is up to you, but unless you’re already doing something else in RStudio, it can’t hurt. After both install, run the following command

esquisse::esquisser(palmerpenguins::penguins)
esquisse with palmerpenguins

If you want to use your own data set, run the following

esquisse::esquisser()
esquisse with palmerpenguins

Additional resources

Creating plots without coding @ RPubs

Esquisse R Package @ Little Miss Data

Tableau-like Drag and Drop GUI Visualization in R @ Towards Data Science