From 0b7044db76a2ecd60f9ba3173728be78c11e6f8a Mon Sep 17 00:00:00 2001 From: "Michael C. Frank" Date: Wed, 4 Sep 2019 10:14:18 -0700 Subject: [PATCH] revisions of pilot analysis --- .gitignore | 1 + MB4_pilot_analysis.Rmd | 258 +++++++++++++++++++++++ mb4-analysis.Rproj | 13 ++ pilot_data/MB4_CompiledData_June2019.csv | 68 ++++++ 4 files changed, 340 insertions(+) create mode 100644 MB4_pilot_analysis.Rmd create mode 100644 mb4-analysis.Rproj create mode 100644 pilot_data/MB4_CompiledData_June2019.csv diff --git a/.gitignore b/.gitignore index 26fad6f..be0b467 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,4 @@ vignettes/*.pdf # Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html rsconnect/ +.Rproj.user diff --git a/MB4_pilot_analysis.Rmd b/MB4_pilot_analysis.Rmd new file mode 100644 index 0000000..5516f9e --- /dev/null +++ b/MB4_pilot_analysis.Rmd @@ -0,0 +1,258 @@ +--- +title: "MB4 Pilot Analyses_August 2019" +author: "Kelsey Lucca & Mike Frank" +date: "9/4/2019" +output: html_document +--- + +Load packages, set themes, and rename variables + +```{r} +library(tidyverse) +library(brms) +library(binom) +library(ICCbin) +library(meta) +library(lme4) +library(here) +library(knitr) + +theme_set(theme_bw()) +``` + + +Read data and rename helper and hinderer choices for analyses. + +```{r} +pilot <- read_csv(here("pilot_data/MB4_CompiledData_June2019.csv")) %>% + mutate(chose_helper = ifelse(helper_hinderer_choice == "helper", + TRUE, FALSE)) +``` + + +# Descriptives + +```{r} +pilot %>% + group_by(lab_id, fam_hab, session_error) %>% + count() %>% + kable() +``` + + +# Pilot Phase 1: Familiarization analyses + +Convert data to long format to examine looking time trends during the familiarization events, filtering data by usable participants and participants who only received familiarization paradigm. + +```{r} +looking <- pilot %>% + filter (fam_hab == "fam" & session_error =="noerror") %>% + gather(trial_number, looking_duration, + matches("trial[123456]_lookingtime")) %>% + mutate(trial_number = as.numeric(str_replace(str_replace( + trial_number, "trial",""), "_lookingtime",""))) %>% + select(lab_id, subj_id, age_months, trial_number, looking_duration) +``` + +plot looking time data + +```{r} +ggplot(looking, + aes(x = trial_number, y = looking_duration, group = trial_number))+ + geom_boxplot() + + xlab("Trial Number")+ + ylab("Looking Duration (s)") +``` + +summarize looking time means across trials + +```{r} +looking %>% + group_by(trial_number) %>% + summarise(mean=mean(looking_duration)) %>% + kable() +``` + +summarize choices across infants + +```{r} +pilot %>% + filter(fam_hab == "fam" & session_error =="noerror") %>% + summarise(mean = mean(chose_helper), + n = n()) %>% + kable +``` + +No preference among familiarization infants. + +# Pilot Phase 2: Habituation Analyses + +Calculate the number of infants who successfully habituated. You habituated if LT decreases by a factor of 2 between 1,2,3 and 4,5,6 + +```{r} +pilot %>% + filter(fam_hab == "fam" & session_error =="noerror") %>% + mutate(habituated = + ifelse(((trial4_lookingtime + trial5_lookingtime + + trial6_lookingtime) < + ((trial1_lookingtime + trial2_lookingtime + + trial3_lookingtime)/2)), + TRUE, FALSE)) %>% + group_by(lab_id, habituated) %>% + count() %>% + kable() +``` + +Most babies didn't habituate. So, let's filter to the habituation version. + +Summarize choice behavior across labs and ages. + +```{r} +pilot %>% + filter(fam_hab=="hab" & session_error=="noerror") %>% + summarise(chose_helper = mean(chose_helper), + n = n()) %>% + kable() +``` + +Now we see a larger number of helper-choosers. + +## Main GLM analysis: model 1 (all infants) + +```{r} +all_habitation_data <- pilot %>% + filter(fam_hab == "hab" & session_error == "noerror") + +# FULL MODEL IS SINGULAR WITH PILOT DATA +# glmer_mod <- glmer(chose_helper ~ age_days + +# (age_days | lab_id), +# family = binomial, +# data = habituators) + +glmer_mod <- glm(chose_helper ~ age_days, family = binomial, + data = all_habitation_data) + +summary(glmer_mod) +``` + +Calculate the intraclass-correlation for random intercepts of the mixed effects model. Note that because the lab_id variable leads to a singular fit, this can't be computed for pilot data. + +```{r} +iccbin(cid = lab_id, y = chose_helper, + data = all_habitation_data, + alpha = 0.05) +``` + +Age plot. + +```{r} +ggplot(all_habitation_data, + aes(x = age_months, y = chose_helper, group = 1)) + + stat_smooth(method = "lm") + + geom_point(position = position_jitter(height = .03, width = 0)) + + xlab("Age (months)") + + ylab("Pr (chose helper)") +``` + + +plot between lab variation + +```{r} +by_lab <- all_habitation_data %>% + group_by(lab_id) %>% + summarize(tested = n(), + chose_helper_mean = mean(chose_helper), + chose_helper = sum(chose_helper), + ci_lower = binom.confint(x = chose_helper, + n = tested, + methods = "wilson")$lower, + ci_upper = binom.confint(x = chose_helper, + n = tested, + methods = "wilson")$upper) + +ggplot(by_lab, + aes(x = lab_id, y = chose_helper_mean, + ymin = ci_lower, ymax = ci_upper, color = lab_id)) + + geom_point(aes(size = tested)) + + geom_linerange() + + coord_flip() + + xlab("Lab") + + ylab("Effect Size") +``` + +calculate meta-analysis of single proportions + +```{r} +ma <- metaprop(event = by_lab$chose_helper, + n = by_lab$tested, + studlab = by_lab$lab_id) + +ma +``` + + +# Main GLM analysis: model 2 (only include infants who successfully habituated) + + +```{r} +habituators_data <- pilot %>% + filter(fam_hab == "hab", + session_error == "noerror", + sufficiently_decrease_looking == "yes") + +# FULL MODEL IS SINGULAR WITH PILOT DATA +# glmer_mod <- glmer(chose_helper ~ age_days + +# (age_days | lab_id), +# family = binomial, +# data = habituators) + +glmer_mod <- glm(chose_helper ~ age_days, family = binomial, + data = habituators_data) + +summary(glmer_mod) +``` + +Calculate the intraclass-correlation for random intercepts of the mixed effects model. Note that because the lab_id variable leads to a singular fit, this can't be computed for pilot data. + +```{r} +iccbin(cid = lab_id, y = chose_helper, + data = habituators_data, + alpha = 0.05) +``` + +Age plot. + +```{r} +ggplot(habituators_data, + aes(x = age_months, y = chose_helper, group = 1)) + + stat_smooth(method = "lm") + + geom_point(position = position_jitter(height = .03, width = 0)) + + xlab("Age (months)") + + ylab("Pr (chose helper)") +``` + + +plot between lab variation + +```{r} +by_lab <- habituators_data %>% + group_by(lab_id) %>% + summarize(tested = n(), + chose_helper_mean = mean(chose_helper), + chose_helper = sum(chose_helper), + ci_lower = binom.confint(x = chose_helper, + n = tested, + methods = "wilson")$lower, + ci_upper = binom.confint(x = chose_helper, + n = tested, + methods = "wilson")$upper) + +ggplot(by_lab, + aes(x = lab_id, y = chose_helper_mean, + ymin = ci_lower, ymax = ci_upper, color = lab_id)) + + geom_point(aes(size = tested)) + + geom_linerange() + + coord_flip() + + xlab("Lab") + + ylab("Effect Size") +``` \ No newline at end of file diff --git a/mb4-analysis.Rproj b/mb4-analysis.Rproj new file mode 100644 index 0000000..5183317 --- /dev/null +++ b/mb4-analysis.Rproj @@ -0,0 +1,13 @@ +Version: 1.0 + +RestoreWorkspace: Default +SaveWorkspace: Default +AlwaysSaveHistory: Default + +EnableCodeIndexing: Yes +UseSpacesForTab: Yes +NumSpacesForTab: 2 +Encoding: UTF-8 + +RnwWeave: knitr +LaTeX: XeLaTeX diff --git a/pilot_data/MB4_CompiledData_June2019.csv b/pilot_data/MB4_CompiledData_June2019.csv new file mode 100644 index 0000000..3793af9 --- /dev/null +++ b/pilot_data/MB4_CompiledData_June2019.csv @@ -0,0 +1,68 @@ +lab_id,subj_id,method,fam_hab,RA,age_days,age_months,session_error,session_error_type,notes,second_session,caregiver_seat,participant_gender,days_gestation,hearing_vision,hearing_vision_info,cognitive_developmental,cognitive_developmental_info,infant_handedness,parentA_handedness,parentB_handedness,primary_language,percent_primarylanguage,colorblindness_primaryfamily,cb_order,cb_presentation_order,cb_color_helper,cb_side_helper,color_choice,helper_hinderer_choice,left_right_choice,touch_both,ambiguous_touch_both,trial1_sawcriticalevent,trial1_lookingtime,trial1_numrepeats,trial2_sawcriticalevent,trial2_lookingtime,trial2_numrepeats,trial3_sawcriticalevent,trial3_lookingtime,trial3_numrepeats,trial4_sawcriticalevent,trial4_lookingtime,trial4_numrepeats,trial5_sawcriticalevent,trial5_lookingtime,trial5_numrepeats,trial6_sawcriticalevent,trial6_lookingtime,trial6_numrepeats,trial7_sawcriticalevent,trial7_lookingtime,trial7_numrepeats,trial8_sawcriticalevent,trial8_lookingtime,trial8_numrepeats,trial9_sawcriticalevent,trial9_lookingtime,trial9_numrepeats,trial10_sawcriticalevent,trial10_lookingtime,trial10_numrepeats,trial11_sawcriticalevent,trial11_lookingtime,trial11_numrepeats,trial12_sawcriticalevent,trial12_lookingtime,trial12_numrepeats,trial13_sawcriticalevent,trial13_lookingtime,trial13_numrepeats,trial14_sawcriticalevent,trial14_lookingtime,trial14_numrepeats,additional_notes,sufficiently_decrease_looking,NumHabTrials,habituate_during_fam_events,,, +UCSB,10,single screen,hab,DL,283,9.309210526,error,failure to set habituation criterion,NA,N,caregiver,F,FT,N,NA,N,NA,NC,NC,NC,English,100,NC,1,helper_first,yellow,right,yellow,helper,right,yes,yes,Y,4.23,0,Y,2.59,0,Y,1.68,0,Y,4.68,0,Y,1.06,0,Y,2.01,0,Y,1.94,0,Y,1.01,0,Y,0.33,0,Y,0.29,0,Y,1.77,0,Y,12.02,0,Y,0.93,0,Y,1.48,0,,no,NA,,,, +InfantCog-UBC,CO133,single screen,hab,unknown*,266,8.75,noerror,/,/,N,caregiver,f,290,N,/,N,/,U,R,R,English,80,N,1,helper_first,yellow,right,blue,helper,right,N,/,Y,6,0,Y,15,0,Y,6,0,Y,25,0,Y,11,0,Y,16,0,Y,3,0,Y,8,0,Y,22,0,Y,2,2,Y,19,0,Y,17,0,Y,10,2,Y,12,0,,no,NA,,,, +InfantCog-UBC,TZ130,single screen,hab,unknown*,320,10.52631579,noerror,/,/,N,caregiver,m,267,N,/,N,/,U,R,R,Mandarin,98,N,6,helper_first,blue,left,yellow,hinderer,right,N,/,Y,7,0,Y,9,0,Y,14,0,Y,1,2,Y,11,0,Y,17,0,Y,5,0,Y,9,0,Y,6,0,Y,5,0,Y,19,0,Y,16,0,Y,27,2,Y,30,0,,no,NA,,,, +UCSB,14,single screen,hab,DL,264,8.684210526,noerror,NA,NA,N,caregiver,M,FT,N,NA,N,NA,NC,NC,NC,English,100,NC,7,hinderer_first,blue,right,blue,helper,left,no,NA,Y,6.14,0,Y,0.15,0,Y,6.98,0,Y,0,0,Y,3.5,2,Y,4.91,3,Y,9.45,1,Y,2.02,1,Y,5.79,1,Y,2.66,0,Y,4.33,1,Y,3,0,Y,13.92,0,Y,3.87,0,,no,NA,,,, +UCSB,13,single screen,hab,DL,291,9.572368421,noerror,NA,NA,N,caregiver,F,FT,N,NA,N,NA,NC,NC,NC,English,67,NC,8,hinderer_first,blue,left,yellow,hinderer,left,no,NA,Y,4.87,0,Y,5.81,0,Y,3.06,0,Y,10.5,0,Y,5.49,0,Y,3.48,0,Y,2.61,0,Y,8.03,1,Y,8.79,1,Y,6.98,0,Y,0.37,0,Y,4.71,1,Y,6.07,1,Y,3.15,0,,no,NA,,,, +InfantCog-UBC,PA129,single screen,hab,unknown*,352,11.57894737,error,fuss out,/,N,caregiver,f,275,N,/,N,/,/,/,/,English,99,N,1,helper_first,yellow,right,NA,/,NA,/,/,Y,1,0,Y,1,0,Y,2,0,Y,3,0,Y,4,0,Y,3,0,Y,4,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,7,,,, +InfantCog-UBC,GT124,single screen,hab,unknown*,232,7.631578947,noerror,/,/,N,caregiver,m,263,N,/,N,/,U,R,R,Cantonese,70,N,2,helper_first,yellow,left,yellow,helper,left,N,/,Y,9,3,Y,16,0,Y,7,0,Y,10,0,Y,10,0,Y,5,0,Y,3,2,Y,4,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,8,,,, +InfantCog-UBC,FG131,single screen,hab,unknown*,166,5.460526316,noerror,/,/,N,caregiver,m,293,N,/,N,/,R,R,R,English,100,N,2,helper_first,yellow,left,yellow,helper,left,N,/,Y,24,0,Y,15,0,Y,21,0,Y,21,0,Y,25,0,Y,6,0,Y,15,0,Y,14,0,Y,6,0,Y,7,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,10,,,, +UCSB,11,single screen,hab,ZL,210,6.907894737,noerror,NA,NA,N,caregiver,F,FT,N,NA,N,NA,NC,NC,NC,English,100,NC,2,helper_first,yellow,left,blue,hinderer,right,no,NA,Y,3.32,0,Y,5.13,0,Y,8.8,0,Y,4.09,0,Y,1.38,0,Y,2.86,0,,,,,,,,,,,,,,,,,,,,,,,,,,yes,6,,,, +UCSB,9,single screen,hab,ZL,268,8.815789474,noerror,NA,NA,N,caregiver,F,FT,N,NA,N,NA,NC,NC,NC,English,100,NC,3,hinderer_first,yellow,right,yellow,helper,right,no,NA,Y,10.13,0,Y,7.44,0,Y,4.33,0,Y,5.6,0,Y,3.44,0,Y,4.98,0,,,,,,,,,,,,,,,,,,,,,,,,,,yes,6,,,, +UCSB,12,single screen,hab,ZL,177,5.822368421,noerror,NA,NA,N,caregiver,M,FT,N,NA,N,NA,NC,NC,NC,English,50,NC,3,hinderer_first,yellow,right,yellow,helper,right,no,NA,Y,2.23,0,Y,6.33,0,Y,9.49,0,Y,4.08,0,Y,1.96,0,Y,2.39,0,,,,,,,,,,,,,,,,,,,,,,,,,,yes,6,,,, +UWASH,04_pilot,single screen,hab,RA1,178,5.855263158,noerror,/,Camera angle for choice is less than optimal,N,caregiver,F,281,N,/,N,/,R,R,R,English,100,N,3,hinderer_first,yellow,right,blue,hinderer,left,Y,N,Y,9.37373424,0,Y,7.29174185,0,Y,5.09087992,0,Y,9.05552387,0,Y,5.10889602,0,Y,9.99270129,0,Y,2.50834417,0,Y,2.82752419,0,Y,4.49422312,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,9,,,, +UCSB,8,single screen,hab,ZL,296,9.736842105,error,failure to set habituation criterion,NA,N,caregiver,F,FT,N,NA,N,NA,NC,NC,NC,English,100,NC,4,hinderer_first,yellow,left,blue,hinderer,left,no,NA,Y,2.7,0,Y,3.53,0,Y,0.46,0,Y,2.69,2,Y,0,0,Y,0.49,0,Y,0,1,Y,0.99,0,Y,0,0,Y,0,1,Y,0,0,Y,0.49,0,Y,0,0,Y,0.53,0,,yes,14,,,, +InfantCog-UBC,JP120,single screen,hab,unknown*,244,8.026315789,noerror,/,/,N,caregiver,m,280,N,/,N,/,R,R,R,Cantonese,70,N,4,hinderer_first,yellow,left,blue,helper,left,N,/,Y,15,0,Y,4,0,Y,2,0,Y,0.4,0,Y,4,0,Y,3,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,6,,,, +UWASH,09_pilot,single screen,hab,RA1,272,8.947368421,noerror,/,/,N,caregiver,M,278,N,/,N,/,B,R,R,English,100,N,4,hinderer_first,yellow,left,yellow,helper,left,N,N,Y,15.024107,0,Y,9.04393792,0,Y,3.85732508,0,Y,6.0601573,0,Y,4.29175234,0,Y,5.17615604,0,Y,8.94553113,0,Y,2.273211,0,Y,4.77820301,0,Y,4.57428288,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,10,,,, +UWASH,10_pilot,single screen,hab,RA1,193,6.348684211,error,failure to set habituation criterion,/,N,caregiver,M,281,N,/,N,/,B,R,R,English,100,Y,5,helper_first,blue,right,blue,helper,right,N,N,Y,2.87399197,0,Y,0.40041995,0,Y,3.14152408,1,Y,1.56677413,1,Y,1.80778909,0,Y,2.01663709,2,Y,2.05805492,0,Y,2.00864196,1,Y,7.56689405,1,N,NA,5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,10,,,, +UCSB,15,single screen,hab,ZL,169,5.559210526,noerror,NA,NA,N,caregiver,F,FT,N,NA,N,NA,NC,NC,NC,English,100,NC,5,helper_first,blue,right,blue,helper,right,no,NA,Y,7.21,0,Y,7.11,0,Y,8.66,0,Y,10.58,0,Y,1.63,0,Y,0.81,0,Y,1.19,0,,,,,,,,,,,,,,,,,,,,,,,yes,7,,,, +InfantCog-UBC,VP125,single screen,hab,unknown*,310,10.19736842,noerror,/,/,N,caregiver,f,273,N,/,N,/,U,R,R,Cantonese,60,N,5,helper_first,blue,right,yellow,hinderer,left,N,/,Y,14,0,Y,4,0,Y,24,0,Y,16,0,Y,5,0,Y,9,0,Y,6,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,7,,,, +InfantCog-UBC,JS123,single screen,hab,unknown*,306,10.06578947,error,parent interference,/,N,caregiver,m,286,N,/,N,/,/,/,/,English(50)/Filipino(50),50,N,6,helper_first,blue,left,NA,/,NA,/,/,Y,4,0,Y,3,0,Y,3,0,Y,3,0,Y,3,0,Y,2,0,Y,1,0,Y,2,0,Y,3,0,Y,4,0,Y,2,0,Y,2,0,Y,0.1,0,Y,0,0,,yes,14,,,, +InfantCog-UBC,DJ128,single screen,hab,unknown*,232,7.631578947,noerror,/,/,N,caregiver,m,273,N,/,N,/,L,R,R,English,90,N,6,helper_first,blue,left,blue,helper,left,Y,/,Y,14,0,Y,18,0,Y,10,0,Y,4,0,Y,2,2,Y,3,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,6,,,, +UCSB,7,single screen,hab,ZL,306,10.06578947,noerror,NA,NA,N,caregiver,M,FT,N,NA,N,NA,NC,NC,NC,English,85,NC,6,helper_first,blue,left,blue,helper,left,no,NA,Y,8.32,0,Y,10.1,0,Y,7.23,0,Y,5.06,0,Y,8.55,0,Y,4.01,0,Y,5.9,0,Y,1.97,1,,,,,,,,,,,,,,,,,,,,yes,8,,,, +UWASH,05_pilot,single screen,hab,RA1,273,8.980263158,noerror,/,/,N,caregiver,M,282,N,/,N,/,U,R,R,English,100,N,7,hinderer_first,blue,right,blue,helper,right,Y,N,Y,24.5906131,0,Y,17.926615,0,Y,28.8925998,0,Y,18.3430252,0,Y,26.3439088,0,Y,7.0926528,0,Y,7.72544003,0,Y,5.89146495,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,8,,,, +InfantCog-UBC,NM127,single screen,hab,unknown*,254,8.355263158,noerror,/,/,N,caregiver,m,286,N,/,N,/,R,R,R,Italian,90,N,7,hinderer_first,blue,right,blue,hinderer,left,Y,/,Y,18,0,Y,27,0,Y,11,0,Y,26,0,Y,14,0,Y,9,0,Y,12,0,Y,8,0,Y,6,2,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,9,,,, +UWASH,06_pilot,single screen,hab,RA1,191,6.282894737,error,repeated trial more than 2 times; Parent opened eyes during choice.,"Mom opened eyes after experimetner said ""who do you like?"". Parent had been reminded to not open eyes right before choice phase started",N,caregiver,F,269,N,/,N,/,U,R,L,Hebrew,100,N,8,hinderer_first,blue,left,yellow,hinderer,right,Y,N,Y,10.1671901,0,Y,2.35871506,1,Y,0,0,Y,0,0,Y,2.68341589,3,Y,2.0089879,1,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,6,,,, +InfantCog-UBC,CC126,single screen,hab,unknown*,241,7.927631579,noerror,/,/,N,caregiver,f,266,N,/,N,/,R,R,R,English,60,N,8,hinderer_first,blue,left,yellow,helper,right,N,/,Y,23,0,Y,16,0,Y,15,0,Y,6,0,Y,6,0,Y,12,0,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,yes,6,,,, +UCSB,1,single screen,fam,ZL,237,7.796052632,error,baby did not look at both objects,NA,N,caregiver,F,FT,N,NA,N,NA,NC,NC,NC,Portugese,80,NC,1,helper_first,yellow,right,blue,hinderer,left,no,NA,Y,3.42,0,Y,5.91,0,Y,3.76,0,Y,10.98,0,Y,5.85,0,Y,6.52,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +InfantCog-UBC,VZ116,single screen,fam,Rachelle,260,8.552631579,error,other error,choice board was damaged,N,caregiver,M,266,N,,N,,U,U,U,Mandarin,65,N,1,helper_first,yellow,right,blue,hinderer,left,N,N,Y,14,0,Y,14,0,Y,7,0,Y,5,0,Y,15,0,Y,12,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UOA,p01,single screen,fam,"SKC, CM",259,8.519736842,error,technical,Pyhab errors,N,caregiver,F,283,N,/,N,/,R,R,NC,chinese,100,N,1,helper_first,yellow,right,yellow,helper,right,N,N,Y,22.85995861,0,Y,9.986765975,0,Y,10.79225343,0,Y,7.081393917,0,Y,4.65787879,0,Y,3.156240657,0,,,,,,,,,,,,,,,,,,,,,,,,,/,,,yes,,, +CEU,MB4pilot01,single screen,fam,B,251,8.256578947,noerror,/,/,N,caregiver,m,"unknown, but full-term",N,/,N,/,U,U,U,Hungarian,U,U,1,helper_first,yellow,right,blue,hinderer,left,N,/,Y,10.92,0,Y,23.72,0,Y,14.08,0,Y,14.28,0,Y,11.12,0,Y,15.92,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UOA,p10,single screen,fam,"SKC, CM",314,10.32894737,noerror,,/,N,caregiver,M,269,N,/,N,/,R,R,L,english,100,Y,1,helper_first,yellow,right,yellow,helper,right,Y,N,Y,15.70334088,0,Y,27.20062821,0,Y,11.34221269,0,Y,13.51741303,0,Y,3.886183012,0,Y,7.412126288,0,,,,,,,,,,,,,,,,,,,,,,,,,somehwat unstable for choice.,,,yes,,, +CEU,MB4pilot04,single screen,fam,B,262,8.618421053,noerror,/,/,N,caregiver,f,"unknown, but full-term",N,/,N,/,U,U,U,Hungarian,U,U,2,helper_first,yellow,left,blue,hinderer,right,N,/,Y,7.2,0,Y,4.16,0,Y,20.48,0,Y,3.68,0,Y,13.36,0,Y,7.04,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UOA,p02,single screen,fam,"SKC, CM",203,6.677631579,noerror,,/,N,caregiver,F,291,N,/,N,/,R,R,R,english,100,N,2,helper_first,yellow,left,blue,hinderer,right,N,N,Y,10.90495483,0,Y,12.96348316,0,Y,6.146616236,0,Y,8.345358207,0,Y,4.392910022,0,Y,9.272892137,0,,,,,,,,,,,,,,,,,,,,,,,,,/,,,no,,, +UCSB,5,single screen,fam,ZL,219,7.203947368,noerror,NA,NA,N,caregiver,M,FT,N,NA,N,NA,NC,NC,NC,English,100,NC,2,helper_first,yellow,left,blue,hinderer,right,no,NA,Y,5.64,0,Y,13.44,0,Y,4.46,0,Y,4.63,0,Y,4.56,0,Y,4.6,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +InfantCog-UBC,HZ119,single screen,fam,Ali,246,8.092105263,noerror,,,Y,caregiver,F,279,N,,N,,U,U,U,Mandarin,70,N,2,helper_first,yellow,left,blue,hinderer,right,N,N,Y,24,0,Y,27,0,Y,14,0,Y,7,0,Y,5,0,Y,5,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,yes,,, +UWASH,08_pilot,single screen,hab,RA1,272,8.947368421,error,Repated trial more than 3 times,/,N,caregiver,F,293,N,/,N,/,B,R,R,English,100,N,2,helper_first,yellow,left,blue,hinderer,right,Y,N,Y,4.52433109,0,Y,6.65535688,0,Y,4.75850201,0,Y,3.74222088,1,Y,2.67835903,0,N,NA,5,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,,,,,, +UOA,p06,single screen,fam,"SKC, CM",196,6.447368421,error,procedural,Board maybe too far away/baby can't sit up on own,N,caregiver,F,275,N,/,N,/,U,R,R,english,100,N,3,hinderer_first,yellow,right,blue,helper,left,Y,Y,Y,12.25837934,0,Y,10.09645522,0,Y,15.0598887,0,Y,3.803694136,0,Y,6.237741286,0,Y,19.69906875,0,,,,,,,,,,,,,,,,,,,,,,,,,Baby couldn't sit up on own very well. Might have affected how the baby could choose objects. Baby had a feed after choice.,,,no,,, +UOA,p11,single screen,fam,"SKC, CM",316,10.39473684,error,procedural,Many repeats due to baby inattention. Baby somewhat slumped in mum's lap.,N,caregiver,F,,N,/,N,/,B,R,R,chinese,99,U,3,hinderer_first,yellow,right,blue,hinderer,left,N,N,Y,8.544998005,0,Y,4.444384252,0,Y,11.40997097,0,Y,10.52335332,0,Y,2.436984765,4,Y,4.066738184,5,,,,,,,,,,,,,,,,,,,,,,,,,Baby squirmy but not fussy towards end.,,,no,,, +CEU,MB4pilot06,single screen,fam,B,286,9.407894737,error,fussy baby ,"baby was crying and inattentive, so a fam. trial wasn't repeated in order to cut procedure short",N,caregiver,m,"unknown, but full-term",N,/,N,/,U,U,U,Hungarian,U,U,3,hinderer_first,yellow,right,yellow,helper,right,N,/,Y,24.56,0,Y,30,0,N,21.4,2,Y,5.8,0,Y,8.44,0,Y,1.16,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,yes,,, +UCSB,3,single screen,fam,DL,169,5.559210526,noerror,NA,NA,N,caregiver,M,FT,N,NA,N,NA,NC,NC,NC,English,100,NC,3,hinderer_first,yellow,right,blue,hinderer,left,no,NA,Y,11.7,0,Y,4.96,0,Y,0,0,Y,4.36,0,Y,0,0,Y,3.67,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,yes,,, +UOA,p09,single screen,fam,"SKC, CM",285,9.375,error,technical,Pyhab crashed. No data saved.,N,caregiver,F,266,N,/,N,/,B,L,R,english,95,N,4,hinderer_first,yellow,left,blue,hinderer,right,N,N,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,,,,,,,,,,,,,,,,,,,,,,,,PyHab ran through & at end after session was over crashed and din't save data,,,NA,,, +CEU,MB4pilot08,single screen,fam,B,260,8.552631579,error,fussy baby,"baby was crying at the end of fam., so procedure was cut short (termination of last 2 trials was not infant-controlled)",N,caregiver,m,"unknown, but full-term",N,/,N,/,U,U,U,Hungarian,U,U,4,hinderer_first,yellow,left,blue,hinderer,right,Y,N,Y,5.52,0,Y,3.36,0,Y,3.24,0,Y,27.6,0,Y,19.56,0,Y,6.56,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UCSB,6,single screen,fam,ZL,168,5.526315789,noerror,NA,NA,N,caregiver,M,FT,N,NA,N,NA,NC,NC,NC,Russian,75,NC,4,hinderer_first,yellow,left,yellow,helper,left,yes,no,Y,3.42,0,Y,5.61,0,Y,3.45,0,Y,4.38,0,Y,2.03,0,Y,5.85,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UOA,p04,single screen,fam,"SKC, CM",291,9.572368421,noerror,,/,N,caregiver,M,269,N,/,N,/,U,R,R,english,96,N,4,hinderer_first,yellow,left,yellow,helper,left,N,N,Y,22.63058386,0,Y,10.78162096,0,Y,9.563124117,0,Y,4.528546172,0,Y,4.542446873,0,Y,9.75935601,0,,,,,,,,,,,,,,,,,,,,,,,,,/,,,yes,,, +CEU,MB4pilot07,single screen,fam,B,256,8.421052632,noerror,/,/,N,caregiver,m,"unknown, but full-term",N,/,N,/,U,U,U,Hungarian,U,U,5,helper_first,blue,right,blue,helper,right,N,/,Y,7.16,0,Y,28.08,0,Y,16.6,0,Y,10.44,0,Y,11.72,0,Y,22.08,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UCSB,4,single screen,fam,ZL,288,9.473684211,noerror,NA,NA,N,caregiver,M,FT,N,NA,N,NA,NC,NC,NC,Sweedish,50,NC,5,helper_first,blue,right,blue,helper,right,no,NA,Y,8.26,0,Y,4.21,0,Y,2.94,0,Y,3.74,0,Y,2.29,0,Y,5.93,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UOA,p07,single screen,fam,"SKC, CM",271,8.914473684,noerror,,/,N,caregiver,F,280,N,/,N,/,U,L,R,english,100,N,5,helper_first,blue,right,blue,helper,left,Y,N,Y,9.138136073,0,Y,7.401298642,1,Y,15.05264537,1,Y,11.12818586,2,Y,1.722420377,1,Y,1.852756211,0,,,,,,,,,,,,,,,,,,,,,,,,,"Baby a bit squirmy throughout. Baby wanted to stand on mum's lap part-way through, so had to change camera angle. Baby had a feed after choice.",,,yes,,, +UWASH,07_pilot,single screen,hab,RA1,278,9.144736842,error,Study ended early - parent wanted to stop; no data file saved,"Pressed ""Y"" to end the program and I think the program must have crashed because it did not save a datafile",N,caregiver,M,274,N,/,N,/,R,R,R,English,80,N,5,helper_first,blue,right,yellow,hinderer,left,Y,N,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,NA,,,,,,, +InfantCog-UBC,KF118,single screen,fam,Ali,240,7.894736842,error,other error,inattentive baby,N,caregiver,F,265,N,,N,,U,U,U,English,100,N,6,helper_first,blue,left,blue,helper,left,N,N,Y,6,0,Y,3,0,Y,6,0,Y,6,1,N,2,3,Y,4,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +CEU,MB4pilot03,single screen,fam,B,248,8.157894737,error,inattentive baby,"baby got increasingly squeamish, so after excl. criteria was reached, subsequently missed trials were not repeated",N,caregiver,f,"unknown, but full-term",N,/,N,/,U,U,U,Hungarian,U,U,6,helper_first,blue,left,yellow,hinderer,right,Y,N,Y,9.28,0,Y,4.88,0,N,2.04,>3,N,5.2,2,N,1.56,0,Y,1.64,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UOA,p08,single screen,fam,"SKC, CM",295,9.703947368,error,procedural,Baby too slumped,N,caregiver,F,279,N,/,N,/,R,L,R,english,97,N,6,helper_first,blue,left,yellow,hinderer,left,N,N,Y,13.80569328,0,Y,8.276934363,0,Y,20.24161954,0,Y,6.913462864,0,Y,5.772182599,0,Y,9.523738742,0,,,,,,,,,,,,,,,,,,,,,,,,,Baby sitting too slumped,,,no,,, +UWASH,01_pilot,single screen,fam,RA1,185,6.085526316,noerror,/,/,N,caregiver,F,280,N,/,N,/,B,R,R,English,100,N,6,helper_first,blue,left,blue,helper,left,N,N,Y,2.068408966,0,Y,4.306065083,0,Y,1.738945007,0,Y,7.173110962,0,Y,2.77469492,0,Y,6.394609928,2,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UWASH,02_pilot,single screen,fam,RA1,189,6.217105263,noerror,/,Sound was not working when calibration started. Took a few minutes to get the sound back on. ,N,caregiver,M,293,N,/,N,/,U,R,L,English,100,N,7,hinderer_first,blue,right,blue,helper,right,N,N,Y,11.32347679,0,Y,5.475313187,0,Y,2.741029978,0,Y,2.306670189,0,Y,0,0,Y,7.70957303,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +CEU,MB4pilot05,single screen,fam,B,245,8.059210526,noerror,/,/,N,caregiver,f,"unknown, but full-term",N,/,N,/,U,U,U,Hungarian,U,U,7,hinderer_first,blue,right,yellow ,hinderer,left,N,/,Y,16.28,0,Y,6.8,0,Y,4.04,0,Y,5.84,0,N,14.92,1,Y,6.08,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UOA,p05,single screen,fam,"SKC, CM",259,8.519736842,noerror,,/,N,caregiver,F,286,N,/,N,/,U,R,R,english,100,N,7,hinderer_first,blue,right,yellow,hinderer,right,N,N,Y,15.58076206,0,Y,13.25679858,0,Y,20.35210159,0,Y,11.4772469,0,Y,10.54810846,0,Y,6.885881728,0,,,,,,,,,,,,,,,,,,,,,,,,,Mum said that baby prefers the colour yellow (the colour she chose).,,,no,,, +UCSB,2,single screen,fam,ZL,315,10.36184211,noerror,NA,NA,N,caregiver,M,FT,N,NA,N,NA,NC,NC,NC,English,100,NC,7,hinderer_first,blue,right,yellow,hinderer,left,no,NA,Y,2.9,1,Y,8.2,0,Y,3.7,0,Y,10.75,0,Y,4.65,1,Y,8.33,1,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +CEU,MB4pilot02,single screen,fam,B,266,8.75,error,experimenter error,"during fam., baby missed last 1/2s of a crucial event and this trial wasn't repeated",N,caregiver,m,"unknown, but full-term",N,/,N,/,U,U,U,Hungarian,U,U,8,hinderer_first,blue,left,blue,helper,left,N,/,Y,30,0,Y,23.88,0,Y,19.32,0,N (misses last 1NA2s),11.68,0,Y,3.68,0,Y,1.72,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,yes,,, +UOA,p03,single screen,fam,"SKC, CM",291,9.572368421,noerror,,/,N,caregiver,M,273,N,/,N,/,U,R,R,english,100,N,8,hinderer_first,blue,left,blue,helper,right,N,N,Y,26.50471716,0,Y,28.50430529,0,Y,27.33904575,0,Y,23.61162017,0,Y,23.80202243,0,Y,27.71557355,0,,,,,,,,,,,,,,,,,,,,,,,,,/,,,no,,, +InfantCog-UBC,GK117,single screen,fam,Kiley,241,7.927631579,noerror,,,N,caregiver,M,291,N,,N,,U,U,U,English,100,N,8,hinderer_first,blue,left,yellow,hinderer,left,N,N,Y,12,0,Y,6,0,Y,18,0,Y,8,0,Y,22,0,Y,11,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,no,,, +UWASH,03_pilot,single screen,fam,RA1,286,9.407894737,noerror,/,"Choice unclear online, blind coder needs to reivew; experimenter administering choice task wore a fitbit on left wrist and hair tie on right wrist",N,caregiver,F,281,N,/,N,/,U,R,B,English,100,N,8,hinderer_first,blue,left,blue,helper,left,Y,N,Y,8.578210831,0,Y,4.606837034,0,Y,2.77658987,0,Y,2.116311789,0,Y,0.460639,0,Y,1.016019106,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,yes,,, +NEGEV,205,eye tracker,hab,,300,9.868421053,error,there was a problem with the calibration,Lab did not follow pilot protocol,,caregiver,F,NC,N,N,N,N,U,R,R,Hebrew,,N,NA,NA,NA,NA,blue,hinderer,left,Y,N,Y,4.011,0,N,,3,Y,5.244,2,Y,5.5,0,Y,3.545,0,Y,4.049,0,Y,6.947,2,N,,3,N,,3,N,,3,Y,2.905,2,,,,,,,,,,,,,,,, +NEGEV,207,eye tracker,hab,,242,7.960526316,error,,Lab did not follow pilot protocol,,caregiver,M,NC,N,N,N,N,U,R,L,Hebrew,100,N,NA,NA,NA,NA,blue,hinderer,left,N,N,,7.518,0,Y,11.305,0,Y,16,0,Y,16,0,Y,2.844,0,Y,9.906,0,Y,1.972,0,,,,,,,,,,,,,,,,,,,,,,,,,,,, +NEGEV,201,eye tracker,hab,,294,9.671052632,error,,Lab did not follow pilot protocol,,caregiver,F,NC,N,N,N,N,U,R,R,"bilingual (English and Hebrew) +",100,N,NA,NA,NA,NA,blue,helper,right,N,N,Y,16,0,Y,7.722,0,Y,7.553,0,N,,3,N,,0,N,,0,Y,9.468,2,Y,6.887,0,Y,2.063,0,N,,3,Y,0.711,0,,,,,,,,,,,,,,,, +NEGEV,200,eye tracker,hab,,255,8.388157895,error,,Lab did not follow pilot protocol,,caregiver,F,NC,N,N,N,N,U,R,R,Hebrew,100,N,NA,NA,NA,NA,yellow,helper,right,Y,N,Y,9.336,0,Y,1.623,0,N,,3,Y,1.996,3,Y,4.399,0,Y,10.854,0,Y,16,0,Y,2.902,0,Y,7.821,1,Y,2.478,2,N,,3,N,,3,,,,,,,,,,,,, +NEGEV,210,eye tracker,hab,,242,7.960526316,error,the baby started to cry afther trail 11,Lab did not follow pilot protocol,,caregiver,F,NC,N,N,N,N,U,R,L,Hebrew,100,N,NA,NA,NA,NA,yellow,helper,right,Y,N,Y,7.331,0,Y,5.535,0,Y,3.172,2,Y,0,0,N,,3,N,,3,Y,8.962,2,N,,3,N,,3,Y,4.859,0,N,,3,Y,1.023,3,,,,,,,,,,,,, +NEGEV,209,eye tracker,hab,,193,6.348684211,error,,Lab did not follow pilot protocol,,caregiver,F,"NC +",N,N,N,N,U,R,R,Hebrew,100,N,NA,NA,NA,NA,blue,hinderer,right,Y,Y,Y,2.983,0,Y,7.921,0,Y,5.147,0,Y,1.793,0,Y,10.471,0,Y,7.946,0,Y,4.549,0,Y,0,2,Y,7.89,0,Y,2.242,0,Y,2.195,0,Y,2.62,0,,,,,,,,,,,,, \ No newline at end of file