This document provides an outline for exploring data in R. It discusses loading packages like tidyverse and reading data into R from files. Common functions for exploring data frames are demonstrated, like dim(), str(), and table(). Data manipulation with dplyr is explained through functions like filter(), select(), arrange(), and mutate() to subset, select variables, sort, and create new variables. Pipe operators (%>%) can combine multiple data transformation steps into a readable workflow.