Search found 210 matches

by seol
Sat Jun 21, 2025 12:37 am
Forum: Module development
Topic: Incorrect effect-size value in paired t-test
Replies: 8
Views: 39221

Re: Incorrect effect-size value in paired t-test

Example: >column1 <- c(10, 20, 30, 40, 50, NA) > column2 <- c(8, 17, 28, 39, NA, 60) > # Incorrect calculation > m1 <- mean(column1, na.rm=TRUE) > m2 <- mean(column2, na.rm=TRUE) > pooledSD <- sd(column1 - column2, na.rm=TRUE) > d_wrong <- (m1 - m2) / pooledSD > d_wrong [1] -0.4898979 > # Correct ca...
by seol
Fri Jun 20, 2025 11:46 pm
Forum: Module development
Topic: Incorrect effect-size value in paired t-test
Replies: 8
Views: 39221

Re: Incorrect effect-size value in paired t-test

Here is the correct way to calculate Cohen’s d for a paired samples t-test in R diffs <- column1 - column2 d <- mean(diffs, na.rm=TRUE) / sd(diffs, na.rm=TRUE) If there are missing values (NAs) in different places in each column, then length(column1) and length(column1 - column2) may not be equal. A...
by seol
Fri Jun 20, 2025 10:21 pm
Forum: Module development
Topic: Incorrect effect-size value in paired t-test
Replies: 8
Views: 39221

Re: Incorrect effect-size value in paired t-test

difference <- column1 - column2 # sd of difference sd_diff <- sd(difference, na.rm = TRUE) # standard error of difference sediff <- sd_diff / sqrt(length(na.omit(difference))) # Cohen's d m1 <- mean(column1, na.rm = TRUE) m2 <- mean(column2, na.rm = TRUE) d <- (m1 - m2) / sd_diff In short, For paire...
by seol
Fri May 16, 2025 1:35 am
Forum: Module development
Topic: Help with Implementing missRanger Imputation Module - Resource Limit Error
Replies: 12
Views: 166375

Re: Help with Implementing missRanger Imputation Module - Resource Limit Error

Hi

You can use jYS module in jamovi library now.

Warm Regards
Seol
by seol
Mon Apr 21, 2025 1:45 am
Forum: Module development
Topic: Module PPDA: error in Test ROC
Replies: 16
Views: 157181

Re: Module PPDA: error in Test ROC

Hi

You can use snowCluster module for ROC analysis shown below.

Best Regards
Seol
by seol
Wed Apr 09, 2025 9:21 pm
Forum: jamovi development
Topic: Intraclass Correlation Coefficient (ICC)
Replies: 23
Views: 270076

Re: Intraclass Correlation Coefficient (ICC)

Hi
Thanks for using MFRM model in snowIRT module.
I'm not helping with statistical interpretation, but here's the MFRM model reference I used to develop the module. I hope you find this helpful.

https://bookdown.org/chua/new_rasch_dem ... model.html

Best Regards
Seol
by seol
Wed Jan 22, 2025 11:49 pm
Forum: General
Topic: Caret Package in JAMOVI/Feature Request
Replies: 1
Views: 61435

Re: Caret Package in JAMOVI/Feature Request

Hi

Thank you for your suggestions. jamovi is an open source statistics program and we are waiting for another module developer to implement the method you suggested.

Kind Regards
Seol
by seol
Thu Jan 02, 2025 12:57 am
Forum: Statistics
Topic: reach analysis for questionnaire validation
Replies: 3
Views: 71802

Re: reach analysis for questionnaire validation

Dear AUN22

I think you should use the snowRMM module rather than the snowIRT module. I want you to take a look at the example files and analysis options in the snowRMM module first.

Kind Regards
Seol