Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

beyond self-report #665

Closed
ben-domingue opened this issue Oct 31, 2024 · 3 comments
Closed

beyond self-report #665

ben-domingue opened this issue Oct 31, 2024 · 3 comments
Assignees

Comments

@ben-domingue
Copy link
Owner

ben-domingue commented Oct 31, 2024

https://link.springer.com/article/10.3758/s13428-024-02496-z#data-availability

Data available at: https://osf.io/vf27z/?view_only=43c4db49648f428c914ebdcc4e191f27

@KingArthur0205
Copy link
Collaborator

KingArthur0205 commented Nov 26, 2024

Study 1
The paper said that 96 participants were in Study 1. However, dataset 1, after deleting duplicate participants, only had 92 participants.

  1. Plymouth Sensory Imagery Questionnaire(PSIQ): 35 items on a 11-point Likert scale.(0-10)
  2. Spontaneous Use of Imagery Scale (SUIS): 18 items on a 5-point Likert scale.
  3. Imagery comparisons task (MCT): 44 items on a 2-point scale. This measure has item-level rt.

Study 2
No item-level data were provided for study2

Study 3
No item-level data.

@KingArthur0205
Copy link
Collaborator

Data:
DMCT_Addis_2020.zip

Code:

# Ppaer: https://link.springer.com/article/10.3758/s13428-024-02496-z
# Data: https://osf.io/vf27z/?view_only=43c4db49648f428c914ebdcc4e191f27
library(haven)
library(dplyr)
library(tidyr)

# ---------- Load Study1 Data -----------
study1_df <- read_sav("Data_merged_multilevel_trimmed.sav")
study1_df <- study1_df[!duplicated(study1_df$Participant_Code), ]
study1_df <- study1_df |>
  rename(id=Participant_Code)

# ------ Process PSIQ Data ------
study1_psyq_df <- study1_df |>
  select(id, starts_with("PsiQ"), starts_with("Psy"), -starts_with("PsiQ_"))
study1_psyq_df <- pivot_longer(study1_psyq_df, cols=-id, names_to = "item", values_to = "resp")

save(study1_psyq_df, file="DMCT_Addis_2020_PSYQ.Rdata")
write.csv(study1_psyq_df, "DMCT_Addis_2020_PSYQ.csv", row.names=FALSE)

# ------ Process MCT Data ------
study1_mct_df <- study1_df |>
  select(id, starts_with("MC"), -MC_RT_indMean, -MC_RT_indSD, -MC_acc, -MC_Modality)

mct_acc_df <- study1_mct_df |>
  select(id, ends_with("acc"))
mct_acc_df <- pivot_longer(mct_acc_df, cols=-id, names_to = "item", values_to = "resp")

mct_rt_df <- study1_mct_df |>
  select(id, ends_with("rt"), -MC_rt)
mct_rt_df <- pivot_longer(mct_rt_df, cols=-id, names_to="item", values_to="rt")
mct_rt_df <- mct_rt_df |>
  select(-item, -id)

mct_df <- cbind(mct_acc_df, mct_rt_df)

save(mct_df, file="DMCT_Addis_2020_MCT.Rdata")
write.csv(mct_df, "DMCT_Addis_2020_MCT.csv", row.names=FALSE)

# ------ Process SUIS Data ------
study1_suis_df <- study1_df |>
  select(id, starts_with("SUIS"), -SUIS_total)
study1_suis_df <- pivot_longer(study1_suis_df, cols=-id, names_to="item", values_to="resp")

save(study1_suis_df, file="DMCT_Addis_2020_SUIS.Rdata")
write.csv(study1_suis_df, "DMCT_Addis_2020_SUIS.csv", row.names=FALSE)

@KingArthur0205
Copy link
Collaborator

@ben-domingue PR for issue: #712
Data is added into dictionary

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants