# Load library
library(tidyverse)
# Import data
esp <- read_csv(file = "https://raw.githubusercontent.com/zief0002/epsy-5261/main/data/esp.csv")
# View data
espesp.csv
The esp.csv data include information on predictions made in the EPSY 5261 ESP experiment.
The attributes included in the data are:
prediction_num: Prediction numbercorrect: Was the prediction correct (Yes) or not (No)
Preview
# A tibble: 20 × 2
prediction_num correct
<dbl> <chr>
1 1 Yes
2 2 Yes
3 3 No
4 4 Yes
5 5 Yes
6 6 No
7 7 Yes
8 8 No
9 9 No
10 10 No
11 11 Yes
12 12 Yes
13 13 No
14 14 Yes
15 15 No
16 16 No
17 17 No
18 18 Yes
19 19 Yes
20 20 No