This code imported and organized the SHJ raw data in a wide format including the variables: ID, task, type, subtype, date, OS, frameRate, accuracy per block (e.g., “accuracyB1”…“accuracyB10”), accuracy per trial (e.g., “acc1”…“acc80”), RT per block (e.g., “RTB1”…“RTB10”), RT per trial (e.g., “RT1”…“RT80”). Each participant’s performance is represented by a single row. (click to expand)
#---WIDE DATA FRAME---"SHJ_W"
#--This code completes the following tasks:
# (1) Create a function that extracts any required information from all psychopy files at once
# (2) Create a list of all the directory paths to each individual file
# (3) Apply the function to the files
# (4) Create a tibble of the result of the function on the files
#--The FINAL OUTPUT = a wide format of the raw SHJ data including:
# ID, task, type, subtype, date, OS, frameRate, accuracy per block (e.g., "accuracyB1"..."accuracyB10"), accuracy per trial (e.g., "acc1"..."acc80"), RT per block (e.g., "RTB1"..."RTB10"), RT per trial (e.g., "RT1"..."RT80")
#--NOTES:
# Step (3) will give warnings if there is any missing data that the function was not specified how to handle
# example: Any participant that did not respond to an item or during all trials will have an "NA" response in the data
# Individual participant files do not stay in chronological order
# (they are re-ordered so that all ps that start with the digit "1" go first, then the "2"...)
#--(1) Create a function that extracts any required information from all psychopy folders at once
# create a function that extracts all the required information from each excel file
# details for what is extracted in this function is found within it,
# to use it to extract any other &/ additional information, edit within the function itself
# temp_data <- readr::read_csv('/Users/anaceciliaruizpardo/RStudio/Concepts, Categories, and Cultural Universals/SHJ Pilot - UWO Sample (04:20:21)/SHJ_test.csv')
extract_shj_W = function(data) {
# temp_data = readr::read_csv(data)
#if temp_data
if (file.size(data) > 14) {
temp_data <- read_csv(data)
# transpose data so that each trial is an individual column for: (1) accuracy & (2) RT
accuracy <- as_tibble(rbind(temp_data$trial_resp.corr))
# add prefix to columns
names(accuracy) <- gsub("V", "acc", names(accuracy))
RT <- as_tibble(rbind(temp_data$trial_resp.rt))
# add prefix to columns
names(RT) <- gsub("V", "RT", names(RT))
# create a tibble with the variables in question
temp_tibble <- as_tibble(cbind(
# unique ID
temp_data[1,"Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*"],
# task
temp_data[1,"task"],
# type
temp_data[1,"type"],
# subtype
temp_data[1, "subtype"],
# date
temp_data[1, "date"],
# OS
temp_data[1, "OS"],
# frameRate
temp_data[1, "frameRate"],
# Block 1 average accuracy (i.e., trials 1-8)
accuracyB1 = sum(accuracy[,1:8]),
# Block 2 average accuracy (i.e., trials 9-16)
accuracyB2 = sum(accuracy[,9:16]),
# Block 3 average accuracy (i.e., trials 17-24)
accuracyB3 = sum(accuracy[,17:24]),
# Block 4 average accuracy (i.e., trials 25-32)
accuracyB4 = sum(accuracy[,25:32]),
# Block 5 average accuracy (i.e., trials 33-40)
accuracyB5 = sum(accuracy[,33:40]),
# Block 6 average accuracy (i.e., trials 41-48)
accuracyB6 = sum(accuracy[,41:48]),
# Block 7 average accuracy (i.e., trials 49-56)
accuracyB7 = sum(accuracy[,49:56]),
# Block 8 average accuracy (i.e., trials 57-64)
accuracyB8 = sum(accuracy[,57:64]),
# Block 9 average accuracy (i.e., trials 65-72)
accuracyB9 = sum(accuracy[,65:72]),
# Block 10 average accuracy (i.e., trials 73-80)
accuracyB10 = sum(accuracy[,73:80]),
# accuracy (for trial 1-80)
accuracy,
# Block 1 average RT (i.e., trials 1-8)
RTB1 = rowMeans(RT[,1:8]),
# Block 2 average RT (i.e., trials 9-16)
RTB2 = rowMeans(RT[,9:16]),
# Block 3 average RT (i.e., trials 17-24)
RTB3 = rowMeans(RT[,17:24]),
# Block 4 average RT (i.e., trials 25-32)
RTB4 = rowMeans(RT[,25:32]),
# Block 5 average RT (i.e., trials 33-40)
RTB5 = rowMeans(RT[,33:40]),
# Block 6 average RT (i.e., trials 41-48)
RTB6 = rowMeans(RT[,41:48]),
# Block 7 average RT (i.e., trials 49-56)
RTB7 = rowMeans(RT[,49:56]),
# Block 8 average RT (i.e., trials 57-64)
RTB8 = rowMeans(RT[,57:64]),
# Block 9 average RT (i.e., trials 65-72)
RTB9 = rowMeans(RT[,65:72]),
# Block 10 average RT (i.e., trials 73-80)
RTB10 = rowMeans(RT[,73:80]),
# RT (for trial 1-80)
RT
))
# rename columns
colnames(temp_tibble)[colnames(temp_tibble) == 'Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*'] <- 'ID'
# export the created tibble
temp_tibble
}
}
#--(2) Create a list of all the directory paths to each individual file
# Find the location of each excel (.xlsx) files
# the folders containing the files should be in 1 folder (e.g. "" in this case)
# this returns a list of each file's location
# Note: the pattern is set to ignore any hidden / temporary files by adding the start of each file name (e.g. "^PARTICIPANT_CU_SHJ_pilot")
files_psychopy = dir("/Users/anaceciliaruizpardo/RStudio/Concepts, Categories, and Cultural Universals/SHJ Pilot - UWO Sample (04:20:21)/Data/SHJ_raw", recursive = TRUE, full.names = TRUE, pattern = "^PARTICIPANT_CU_SHJ_pilot(.*)csv$")
#--(3) Apply the function to the files
# Apply the function to all excel files
result_W = lapply(files_psychopy, extract_shj_W)
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
── Column specification ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────
cols(
.default = col_double(),
StimSet = col_character(),
ready_resp.keys = col_character(),
trial_resp.keys = col_character(),
category = col_character(),
CorrectAns = col_character(),
colFS = col_logical(),
colFT = col_logical(),
colLS = col_logical(),
colLT = col_logical(),
description = col_character(),
`Enter your UNIQUE ID (The last two digits of your phone number, the last two digits of your birth year, and the first two letters of the street on which you live)*` = col_character(),
date = col_character(),
expName = col_character(),
psychopyVersion = col_character(),
OS = col_character()
)
ℹ Use `spec()` for the full column specifications.
#--(4) Create a tibble of the result of the function on the files
# take the lists of the extracted data and turn it into a tibble
SHJ_W = as_tibble(Reduce(rbind, result_W)) # alternative method: x = data.frame(t(sapply(result,c)))
# # remove row names to avoid confusion
# rownames(SHJ_W) = NULL
# # reorganize rows so that the data is ordered by the participant number (e.g. 1, 2, 3, 4...)
# SHJ_W = dplyr::arrange(SHJ_W, ID)
# display SHJ_L
SHJ_W