granola.csv

The granola.csv data include information on n=31n=31 granola bars that were randomly sampled to evaluate quality control.


The attributes included in the data are:


Preview

# Load library
library(tidyverse)

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

# View data
granola
# A tibble: 31 × 1
   protein
     <dbl>
 1    20.7
 2    20.8
 3    22.1
 4    19.7
 5    25.1
 6    27.5
 7    22.9
 8    19.6
 9    18.3
10    22.4
# ℹ 21 more rows