Skip to content

Introduction to Statistics in R

Run the hidden code cell below to import the data used in this course.

# Load the Tidyverse
library(tidyverse)

# Read in the gapminder file
deals <- read.csv("datasets/amir_deals.csv")
happiness <- read.csv("datasets/world_happiness.csv")
food <- read.csv("datasets/food_consumption.csv")

Take Notes

Add notes about the concepts you've learned and code cells with code you want to keep.

Add your notes here

# Add your code snippets here