Search found 21 matches
- Fri May 09, 2025 12:06 am
- Forum: General
- Topic: model measure MAJOR
- Replies: 1
- Views: 4331
Re: model measure MAJOR
I think this question is for the creator of the metafor package (Wolfgang Viechtbauer), not the MAJOR module, which only translates parameters. The documentation describes the comparative use of the parameters "COR" for the raw correlation coefficient, "UCOR" for the raw correlat...
- Tue May 06, 2025 9:47 am
- Forum: General
- Topic: Missing Values Imputation
- Replies: 0
- Views: 6149
Missing Values Imputation
Who care. I added a procedure for missing values imputation using the prediction power of Random Forests (R missForest library) to the jYS module. Ready for criticism.
- Fri Apr 25, 2025 6:17 am
- Forum: jamovi development
- Topic: Hot keys habits in data table
- Replies: 0
- Views: 31267
Hot keys habits in data table
Dear developers! I don't know how it works on non-Windows platforms, but there is a long-standing habit of moving through text fields and tables with the keys: Home - to the beginning of the line End - to the end of the line Ctrl+Home - to the upper left corner Ctrl+End - to the lower right corner T...
- Fri Apr 25, 2025 1:45 am
- Forum: General
- Topic: Subject: Help Needed: Managing Missing Values in Jamovi (Mean, Median, Multiple Imputation)
- Replies: 4
- Views: 30587
Re: Subject: Help Needed: Managing Missing Values in Jamovi (Mean, Median, Multiple Imputation)
There is a missForest library, but I only plan to include it in the module. Maybe this can be included manually with R code?
- Thu Apr 24, 2025 1:31 pm
- Forum: Module development
- Topic: Strings for translation
- Replies: 7
- Views: 34482
Re: Strings for translation
Seems like a good idea. I've been trying to do exactly that but have struggled with it as I could not find any information on how to add translation to a module. It would be immensely helpful if this topic would be explained in the official jamovi documentation on module development: https://docs.j...
- Wed Apr 23, 2025 7:32 am
- Forum: Module development
- Topic: Module PPDA: error in Test ROC
- Replies: 16
- Views: 100951
- Wed Apr 09, 2025 1:04 am
- Forum: General
- Topic: jYS module into Jamovi library
- Replies: 2
- Views: 17745
jYS module into Jamovi library
Dear Jamoviers!
Let me introduce a new jYS module in the Jamovi library (correlation clustering, ROC classification).
I am ready to listen comments and make corrections.
Let me introduce a new jYS module in the Jamovi library (correlation clustering, ROC classification).
I am ready to listen comments and make corrections.
- Mon Mar 31, 2025 9:04 pm
- Forum: Module development
- Topic: Correct formula
- Replies: 1
- Views: 14069
Correct formula
Dear developers! Please do not make like this: formula <- as.formula(paste(paste(dep, paste0(vars, collapse ="+"), sep="~"))) This command does not handle complex variable names correctly (for example 'RBC (10^9/l)') Please do: formula <- jmvcore::constructFormula(self$options$de...
- Mon Mar 31, 2025 8:39 pm
- Forum: Module development
- Topic: Strings for translation
- Replies: 7
- Views: 34482
Re: Strings for translation
For example (in *.b.R file): matrix$addFootnote(rowNo=i, paste0(colVarName, '[r]'), .('Pearson correlation cannot be calculated for non-numeric values')) or nm <- jmvcore::format(.('Matrix #{i}'), i=nCl) You need to add importFrom(jmvcore,.) to NAMESPACE file first + If you want make a translation f...
- Sun Mar 30, 2025 4:07 pm
- Forum: Module development
- Topic: Strings for translation
- Replies: 7
- Views: 34482
Re: Strings for translation
I just ask other module developers to do this