cereal.csv

The data in cereal.csv includes nutrition information collected from \(n=30\) breakfast cereals. The data, which were provided by (Lock:2020?), were obtained from http://nutritionresource.com/.


The attributes included in the data are:


Preview

# Import data
library(tidyverse)
cereal = read_csv(file = "https://raw.githubusercontent.com/zief0002/epsy-5261/main/data/cereal.csv")

# View data
cereal

References