Lecture 1
College of Idaho
CSCI 2025 - Winter 2026
install.packages("package_name") (only do this once)library(package_name) (do this every time you start a new R session)tidyverse: A collection of packages for data manipulation, visualization, and modeling
ggplot2: A package for creating graphics using the Grammar of Graphicsdplyr: A package for data manipulationtidyversepalmerpenguins package?penguinspenguins)
tidyverse data frames are referred to as tibblesspecies, bill_length_mm, island)species is “Adelie”, the value of bill_length_mm is 39.1)penguinsglimpse gives a quick overview of the data framehead shows the first few rows of the data frametail shows the last few rows of the data frame