ben-domingue / irw

Code related to data for the Item Response Warehouse
https://datapages.github.io/irw/
7 stars 12 forks source link

A Tutorial on Systematic Methodology for Psychometric Model Selection: Case Study of the EOAQ-EST #471

Closed joshgilbert1994 closed 1 week ago

joshgilbert1994 commented 1 month ago

https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/FCBOGB

saviranadela commented 1 week ago
image
saviranadela commented 1 week ago

@ben-domingue @KingArthur0205

processed data: EOAQ-EST_Silveira_2024.csv

code:

library(readxl)
library(tidyr)
library(dplyr)

df <- read_xlsx('data.xlsx')

df <- df %>%
  select(ID, Q1:Q14) %>%
  rename(id = ID)

df <- df %>%
  pivot_longer(Q1:Q14,
               names_to = "item",
               values_to = "resp")

write.csv(df, 'EOAQ-EST_Silveira_2024.csv')
saviranadela commented 1 week ago

PR: https://github.com/ben-domingue/irw/pull/677

KingArthur0205 commented 1 week ago

@saviranadela Hi Savira,

The data looks great! I noticed an additional column containing row numbers, which I have removed. Could you please confirm whether this column was intended to be included? Cheers!

Updated datasets: EOAQ-EST_Silveira_2024.csv

Just added the codedf <- df %>% select(-X)

KingArthur0205 commented 1 week ago

Dataset info added to dictionary@row 628.

saviranadela commented 1 week ago

@KingArthur0205 ah weird, I can't see it on my end. everything seems okay here i guess.. does it?

image

but anyway, thanks Arthur!

KingArthur0205 commented 1 week ago

Np! Feel free to ship the PR and I'll upload this data to Ben : )

saviranadela commented 1 week ago

oh wait, i know what you meant, it wasn't intended to be there :))

saviranadela commented 1 week ago

PR: https://github.com/ben-domingue/irw/pull/679

ben-domingue commented 1 week ago

@KingArthur0205 is there anything for me to do here?

KingArthur0205 commented 1 week ago

@ben-domingue I'll ship you the data via Slack : )