Publications by Samah

LEVANTE EF measures

11.12.2024

Data loading library(tidyverse) library(glue) library(here) here() starts at /Users/mcfrank/Projects/levante-pilots library(mirt) Loading required package: stats4 Loading required package: lattice library(ggrepel) # require(arm) library(lavaan) This is lavaan 0.6-19 lavaan is FREE software! Please report any bugs. library(tidySEM) Loading ...

413 sym Python (16782 sym/64 pcs) 8 img

Document

09.12.2024

Table of contents Students per school and grade/age Load all scores Distributions across all schools Distributions by school Save distribution files Percentiles across grades Score Reports Author LEVANTE DCC Team Published November 30, 2024 Code library(tidyverse) library(here) here() starts at /Users/mcfrank/Projects/levante-pilots Code ...

1592 sym 17 img

Longitudinal peekbank

12.11.2024

Table of contents Descriptives of the longitudinal data Q1: age-related changes in the latent score 1 factor approach 2 factor approach 3 factor approach Q2: Does RT relate to growth in vocabulary? Draft 1: with LMERs Draft 2: latent change scores Draft 3: discrete variables Draft 4: Another version of coupled change Draft 5: Adding vocab to th...

3476 sym Python (59623 sym/49 pcs) 12 img

peekbank CFA

16.10.2024

Table of contents Full dataset EFA CFA Alternative models Speed/accuracy separate Variation separated CDI vs. LWL No comprehension Without variances Fit models with dataset grouping Factor analysis library(tidyverse) library(lavaan) Warning: package 'lavaan' was built under R version 4.3.3 This is lavaan 0.6-18 lavaan is FREE software! Pl...

2565 sym Python (78762 sym/113 pcs) 8 img

LEVANTE CO ToM data

24.08.2024

source(here::here("assessment/colombia/stage2/_setup.R")) here() starts at /Users/mcfrank/Projects/levante-pilots Loading required package: stats4 Loading required package: lattice tom <- read_rds(file = here("assessment","colombia","stage2","task_analyses","data","tom_data.rds")) Note that our ToM data structure probably needs some work. tom...

656 sym Python (508154 sym/54 pcs) 4 img 1 tbl

Hurdle Model Simulation

30.07.2024

Hurdle Model Simulations library(lme4) Loading required package: Matrix library(GLMMadaptive) Attaching package: 'GLMMadaptive' The following object is masked from 'package:lme4': negative.binomial library(tidyverse) library(tictoc) # timing library(multidplyr) # parallelization library(beepr) # beeps We’re going to do a simulation on...

2375 sym Python (10064 sym/38 pcs) 5 img

ManyNumbers Small Sets Pilot Analysis

01.07.2024

Contents Intro Preprocessing and loading Loading Preprocessing Difference score approach Models Search choice Plots Models Exploring models with simpler parameterization Search time Plots Models Hurdle models Conclusions Analysis comments Design comments ManyNumbers Small Sets - Pilot Data Analysis Intro This markdown is an exploration ...

8355 sym Python (25983 sym/69 pcs) 10 img

Random effects meta-analysis

05.03.2024

library(tidyverse) library(readxl) library(metafor) ## Loading required package: Matrix ## ## Attaching package: 'Matrix' ## The following objects are masked from 'package:tidyr': ## ## expand, pack, unpack ## Loading required package: metadat ## Loading required package: numDeriv ## ## Loading the 'metafor' package (version 4.2-0). For an #...

3149 sym R (13836 sym/24 pcs)

EALS study 2

26.02.2024

library(tidyverse) library(here) ## here() starts at /Users/mcfrank/Projects/eals library(lme4) ## Loading required package: Matrix ## ## Attaching package: 'Matrix' ## The following objects are masked from 'package:tidyr': ## ## expand, pack, unpack Read data. d <- read_csv(here("study2","EALS_study2_concatenated_allwaves.csv")) ## Rows: 123...

446 sym R (4730 sym/23 pcs) 4 img 1 tbl

Visual Vocab Choice Model

09.08.2023

Visual Vocab Choice Model Model of word recognition Let’s assert a model of word recognition for some target and distractor \({t,d} \in O\). We want to compute \(p(t | w)\), the probability of the particular target given the word. By Bayes’ rule, \[ \begin{align} p(t | w) &=& \frac{p(w | t) p(t)}{\sum_{o \in {t,d}}{p(w | o) p(o)}}\\ &=& \frac{...

3258 sym