Not the same as having it directly in the output of the T-test, but I though I'd give a shoutout to a nice module
Search found 19 matches
- Thu Nov 20, 2025 2:51 pm
- Forum: Module development
- Topic: Request for adding to the T-Test module the effect sizes R² / Eta squared and probability of superiority
- Replies: 1
- Views: 19084
Re: Request for adding to the T-Test module the effect sizes R² / Eta squared and probability of superiority
You can calculate the statistic superiority using the module `bmtest` (Brunner-Munzel-Test) by Julian Karch: https://github.com/karchjd/bmtest/tree/main
Not the same as having it directly in the output of the T-test, but I though I'd give a shoutout to a nice module
Not the same as having it directly in the output of the T-test, but I though I'd give a shoutout to a nice module
- Thu Aug 28, 2025 5:50 am
- Forum: Module development
- Topic: Replace existing tests
- Replies: 4
- Views: 38711
Re: Replace existing tests
Thanks for the explanations. We're going to discuss how to proceed, probably just going to live with having the original jmv-tests still included ... The addon-idea sounds great but I can see how this might not be an immediate priority.
- Thu Aug 21, 2025 8:55 am
- Forum: Module development
- Topic: Replace existing tests
- Replies: 4
- Views: 38711
Replace existing tests
Hi everyone, I'm developing a module which adds to the frequencies-module by adding more options for exact or asymptotic methods. It builds on the functions for the binomial and multinomial tests and add more options. So I'd like to replace the existing functions (propTest2 and propTestN) with my ne...
- Thu Apr 24, 2025 1:22 pm
- Forum: Module development
- Topic: Strings for translation
- Replies: 7
- Views: 79231
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.ja...
- Thu Oct 31, 2024 10:41 am
- Forum: Module development
- Topic: (In)Completeness of the R Documentation
- Replies: 0
- Views: 138163
(In)Completeness of the R Documentation
Hi guys I am currently in the process of finishing up my module and writing the documentation. During this process I noticed that in the R documentation of the package under "Usage", for arguments that have a dropdown-style string-selector (e.g. the direction of the hypothesis, which can b...
- Thu Sep 12, 2024 6:26 am
- Forum: Module development
- Topic: enable UI options based on number of provided variables
- Replies: 9
- Views: 91434
Re: enable UI options based on number of provided variables
Wow Damian this is mighty impressive! Thank you so much for your help, I really appreciate it. Got my UI working as I intended now 
- Thu Aug 29, 2024 10:57 am
- Forum: Module development
- Topic: enable UI options based on number of provided variables
- Replies: 9
- Views: 91434
Re: enable UI options based on number of provided variables
Hi Brice
Haven't heard back from Damian yet. I tried to do it on my own, but that hasn't been successful, so sadly I can't help you out.
Dan
Haven't heard back from Damian yet. I tried to do it on my own, but that hasn't been successful, so sadly I can't help you out.
Dan
- Sun Jul 14, 2024 6:30 am
- Forum: Module development
- Topic: enable UI options based on number of provided variables
- Replies: 9
- Views: 91434
Re: enable UI options based on number of provided variables
Hi Damian, thank you so much!
Best wishes, Dan
Best wishes, Dan
- Fri Jul 12, 2024 4:38 am
- Forum: Module development
- Topic: enable UI options based on number of provided variables
- Replies: 9
- Views: 91434
Re: enable UI options based on number of provided variables
Hi jonathon
I feared as much.
Just so that it doesn't take up too much time... I can also live with displaying a warning in the output. But if you have something similar already, I'm very grateful.
Best wishes,
Dan
I feared as much.
Just so that it doesn't take up too much time... I can also live with displaying a warning in the output. But if you have something similar already, I'm very grateful.
Best wishes,
Dan
- Thu Jul 11, 2024 1:42 pm
- Forum: Module development
- Topic: enable UI options based on number of provided variables
- Replies: 9
- Views: 91434
enable UI options based on number of provided variables
Hi there For one of the tests in my module, the user can provide either one or two grouping variables. I'd like to disable some options of the UI, if only one grouping variable is provided. I tried the following, but it doesn't work: enable: (`length(self$options$groupingVar) == 2`) I know it could ...