This repo includes the material for two workshops held in Datafest Tbilisi:
- Data manipulation using
dplyr
- Data visualization using
ggplot2
- Go to Intro to the Tidyverse project on Rstudio Cloud.
- Click on Intro to the Tidyverse project.
- Install R.
- Install Rstudio.
- Install the
tidyverse
andgapminder
packages usinginstall.packages(c("tidyverse", "gapminder"))
.
NOTE: For more details about R and Rstudio installation, check Installing R and RStudio section in ModernDive book.
- Go to jupyter.org/try.
- Click on Try Jupyter with R.
- Install the
gapminder
package usinginstall.packages("gapminder")
.
Make sure you are not getting any errors when you execute:
library(tidyverse)
library(gapminder)
The material exists in one repo, which you can download or clone using:
git Clone https://github.com/OmaymaS/datafest_tidyverse_workshop.git
The ./tutorial
directory includes seperate .Rmd
files with exercises and solutions.