Search found 10 matches

by rjwatt42
Thu Mar 14, 2024 12:08 pm
Forum: Module development
Topic: Graph outputs - not appearing
Replies: 2
Views: 811

Re: Graph outputs - not appearing

Many thanks Jonathon - and yes I would be very happy to get an invite. I'll try that, So, instead of making the ggplot object inside .run() make just the data inside .run() and then pass those to .plotGraph() and build the ggplot() object there. I'll email you separately about what I am doing - in c...
by rjwatt42
Wed Mar 13, 2024 5:36 pm
Forum: Module development
Topic: Graph outputs - not appearing
Replies: 2
Views: 811

Graph outputs - not appearing

Hello I have a module under development that runs a set of simulations and produces a graph as output. So long as the number of simulations allows the process to finish in maybe 15sec, then all is well. If the number of simulations is too big, then the graph never appears, and Jamovi just gets stuck...
by rjwatt42
Tue Feb 27, 2024 4:49 pm
Forum: Module development
Topic: Change the value of a check box programmatically?
Replies: 2
Views: 902

Re: Change the value of a check box programmatically?

Many thanks, Maurizio - that is perfect.
by rjwatt42
Tue Feb 27, 2024 10:40 am
Forum: Module development
Topic: Change the value of a check box programmatically?
Replies: 2
Views: 902

Change the value of a check box programmatically?

Hi, I am working on a module that does a procedure with a random process in it. In order to see how much the particular output depends on the specific instance of that random stage, it would be nice to be able to repeat the procedure. Conceptually, the simple way to do this would be to have a push b...
by rjwatt42
Mon Nov 13, 2023 4:15 pm
Forum: Module development
Topic: clearWith and Images
Replies: 2
Views: 11479

Re: clearWith and Images

Thanks Jonathon. I spent the weekend experimenting with this and now have a good grasp of how the system works. I think my application is a little outside the normal run. I am wanting to generate some simulated data, see it (hence the image), and then have the option to do other things to it like pl...
by rjwatt42
Tue Nov 07, 2023 10:43 am
Forum: Module development
Topic: clearWith and Images
Replies: 2
Views: 11479

clearWith and Images

Hi Can I check the logic of clearWith and images, please? An example of what I am doing would have two controls boolean xxx and yyy (anything). What I am wanting is that an image is left unchanged if option xxx is false, but redrawn if x is true or if yyy option changes. So, I put this into the .a.y...
by rjwatt42
Wed Oct 18, 2023 9:19 am
Forum: Module development
Topic: sending simulated data to the spreadsheet
Replies: 4
Views: 8320

Re: sending simulated data to the spreadsheet

Yes - accessing the clipboard does sound like it will be more problematical as browsers evolve. I may already be at that point - the university I work for is increasingly unwilling to allow installations of software. I'll send you an email with a link to the GitHub once I'm a bit more confident that...
by rjwatt42
Fri Oct 13, 2023 9:13 am
Forum: Module development
Topic: sending simulated data to the spreadsheet
Replies: 4
Views: 8320

Re: sending simulated data to the spreadsheet

Thank you again for such a quick response. That's good to know - so I can stop trying things. Although what you suggest sounds a bit precarious, I could save the simulated data rather than the seed. Also I already have the code to copy the simulated data to the clipboard, from which it can be pasted...
by rjwatt42
Thu Oct 12, 2023 5:19 pm
Forum: Module development
Topic: sending simulated data to the spreadsheet
Replies: 4
Views: 8320

sending simulated data to the spreadsheet

Hello I am working on a module that will create simulated data and then send that to the spreadsheet. It's mainly working, but one feature is escaping me. When I check the Output option, the new variables overwrite whatever has been produced so far. What I am hoping for is to have the new data appen...
by rjwatt42
Sun Oct 08, 2023 1:16 pm
Forum: Module development
Topic: Saving text (string) data to the spreadsheet
Replies: 1
Views: 6899

Saving text (string) data to the spreadsheet

Hello Is it possible to save text as string values to the spreadsheet. I have a variable that is Categorical, with levels "C1", "C2" etc. If I use setValues, it is saved as numerical. Here is a simple version of what I am doing: private = list( .run = function() { n<-42 IV<-rnorm...