Search found 15 matches

by DStuder
Thu Oct 31, 2024 10:41 am
Forum: Module development
Topic: (In)Completeness of the R Documentation
Replies: 0
Views: 1389

(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...
by DStuder
Thu Sep 12, 2024 6:26 am
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 9290

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 :)
by DStuder
Thu Aug 29, 2024 10:57 am
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 9290

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
by DStuder
Sun Jul 14, 2024 6:30 am
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 9290

Re: enable UI options based on number of provided variables

Hi Damian, thank you so much!

Best wishes, Dan
by DStuder
Fri Jul 12, 2024 4:38 am
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 9290

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
by DStuder
Thu Jul 11, 2024 1:42 pm
Forum: Module development
Topic: enable UI options based on number of provided variables
Replies: 9
Views: 9290

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 ...
by DStuder
Thu Apr 18, 2024 10:05 am
Forum: Module development
Topic: Linebreak in table note
Replies: 4
Views: 7371

Re: Linebreak in table note

Alright, thanks for your help and the suggestion!
by DStuder
Thu Apr 18, 2024 9:28 am
Forum: Module development
Topic: Linebreak in table note
Replies: 4
Views: 7371

Re: Linebreak in table note

Hi jonathon Thanks for the quick reply. Adding them as separate notes works as such, but also repeats the "Note.", so the output then is Note. a) text Note. b) some more text Note. c) even more text I was wondering if I could somehow create a different output based on whether the code is r...
by DStuder
Thu Apr 18, 2024 8:49 am
Forum: Module development
Topic: Linebreak in table note
Replies: 4
Views: 7371

Linebreak in table note

Hey folks For the module I'm developing I added a note to the table using note <- paste("a) some text \n b) some more text \n c) even more text") table$setNote(note) The note contains a few different paragraphs, which I'd like to separate with a linebreak for visual clarity. So the output ...
by DStuder
Tue Jun 27, 2023 7:26 am
Forum: Module development
Topic: Best place to create helper functions?
Replies: 1
Views: 7625

Best place to create helper functions?

Hi there! For the module I'm developing I find myself constantly copying code from one place to another, both within the same analysis and and also between different analyses (i.e. data cleansing, which is pretty much the same process for all of my analyses). So I thought it would be easier just spe...