This repository contains materials for R for data science with tidyverse and ggplot2 seminar, conducted as a part of #NGSeminars series by NGSchool Society. The recording is available here.
Running materials locally require R and RStudio. Follow steps below to setup your environment:
-
clone OR download and unzip this repository
-
open R_for_data_science.Rmd in RStudio
-
install required packages (see below)
If you don't have access to R and RStudio you can run it on cloud for free:
-
create account at https://rstudio.cloud/plans/free and log in
-
in your workspace select New Project -> New Project from Git Repo
-
copy path to this repository
-
install required packages (see below)
required_packages <- c("tidyverse", "ggpubr", "palmerpenguins", "PNWColors", "png")
for (pkg in required_packages) {
if (pkg %in% rownames(installed.packages()) == FALSE){
install.packages(pkg)
}
}