grades.csv

The grades.csv data includes grades for n=100n=100 student who were enrolled in an underwater basket weaving class (UBW 101) during spring semester of the 1984-85 academic year.


The attributes included in the data are:


Preview

# Load library
library(tidyverse)

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

# View data
grades
# A tibble: 100 × 3
      id grade instructor
   <dbl> <dbl> <chr>     
 1     1  79.9 Cooper    
 2     2  93.9 Cooper    
 3     3  85.6 Cooper    
 4     4  92.4 Cooper    
 5     5  80.9 Cooper    
 6     6  55.4 Cooper    
 7     7 112.  Cooper    
 8     8  53.9 Cooper    
 9     9  74.1 Cooper    
10    10  92.2 Cooper    
# ℹ 90 more rows