KBB Screener Tester Error - LeoLedesma237/LeoWebsite GitHub Wiki

Overview

This is a very short script that returns the tester's IDs that used the incorrect screener during data collection. There are two parts to this script.

  • Part 1: General data loading and cleaning
  • Part 2: Inspecting the data visually

Part 1: General data loading and cleaning

# Load in packages
library(tidyverse)

# Load in the data
setwd("~/KBB_new_2/1_screener/final_data")
All.Children <- read_excel("All Children.xlsx")

# Select variables of interest
All.Children2 <- select(All.Children, Evaluator_ID, Child_age, Date_of_Evaluation, Screener.Type, Screener.Test)

# Keep the incorrect screener entries
Incorrect.Screeners <- All.Children2[grepl(pattern = "Incorrect", All.Children2$Screener.Test),]

Part 2: Viewing the tester ID's

# View the results
table(Incorrect.Screeners$Evaluator_ID)
view(Incorrect.Screeners)

Afterwards

  • Relay this information to the project coordinator