Search found 2950 matches

by jonathon
Wed Mar 04, 2026 9:34 am
Forum: Statistics
Topic: Chi-square test not working because of missing values
Replies: 10
Views: 29503

Re: Chi-square test not working because of missing values

hi,

yes, you'll want to use a transformed variable ... see the following screenshot


Screenshot 2026-03-04 at 20.32.34.png
Screenshot 2026-03-04 at 20.32.34.png (174.5 KiB) Viewed 2704 times


having said that ... we're very close to pushing out a fix to this issue.

jonathon
by jonathon
Sun Feb 22, 2026 2:53 am
Forum: Statistics
Topic: Notice ignores newlines (\n) due to frontend CSS and HTML sanitization - any workarounds to allow multi-line notices?
Replies: 2
Views: 2431

Re: Notice ignores newlines (\n) due to frontend CSS and HTML sanitization - any workarounds to allow multi-line notices

let us take a look at this ... we really want to discourage people from using the Html element as much as possible.

jonathon
by jonathon
Fri Feb 20, 2026 10:26 pm
Forum: Statistics
Topic: Meta Analysis and error: The condition has length >1
Replies: 2
Views: 5725

Re: Meta Analysis and error: The condition has length >1

hi,

this is a known issue. the maintainer of MAJOR has been missing for some time, and so far progress to address this issue has been slow going.

sorry we don't have better news.

jonathon
by jonathon
Tue Feb 10, 2026 8:37 am
Forum: Statistics
Topic: Chi-square test not working because of missing values
Replies: 10
Views: 29503

Re: Chi-square test not working because of missing values

Ah, apologies for the misunderstanding. I have something for you that I think will work. Rather than a computed variable, use a transformed variable instead. Use the variable with the missing values as your source. You'll need to create a transform with the default formula, i.e. $source Sorry for th...
by jonathon
Mon Feb 09, 2026 10:32 pm
Forum: Statistics
Topic: Chi-square test not working because of missing values
Replies: 10
Views: 29503

Re: Chi-square test not working because of missing values

hi, can you double check that for me? it works for me. observe that the 500 no longer appears in the contingency table. you'll need to use the new column in the analysis of course. i think we have a fix for this issue in the pipeline, but i think you should be able to get this to work in the mean ti...
by jonathon
Sun Feb 08, 2026 3:34 am
Forum: Help
Topic: Calculating mean based on different number of cells containing values
Replies: 5
Views: 24141

Re: Calculating mean based on different number of cells containing values

hmm, i don't think there's a straightforward way to do this in jamovi ... i think we need to implement some sort of SORT() function your best bet might be to use the Rj Editor+ as follows: sorted <- apply(data, 1, sort, decreasing=TRUE, na.last=TRUE) data <- as.data.frame(t(sorted)) you'll see this ...
by jonathon
Sun Feb 08, 2026 1:15 am
Forum: jamovi development
Topic: Windows on an ARM64 Machine
Replies: 1
Views: 3476

Re: Windows on an ARM64 Machine

the virtualisation on arm64 windows machines should run the x64 version ... that's worked for me.

but yes, the cloud version is a good option too.

jonathon
by jonathon
Fri Feb 06, 2026 10:51 pm
Forum: jamovi development
Topic: Feature request: Plot multiple variables on same axes (repeated-measures data)
Replies: 4
Views: 25565

Re: Feature request: Plot multiple variables on same axes (repeated-measures data)

we might need a screenshot of the SPSS feature you're describing.

jonathon
by jonathon
Fri Feb 06, 2026 10:49 pm
Forum: Module development
Topic: plot$setSize() in .run() works interactively but fails on Export - looking for best practices
Replies: 3
Views: 18684

Re: plot$setSize() in .run() works interactively but fails on Export - looking for best practices

hi, yes, i would move your $setSize() into .init(). the general rule is to do as much in .init() as you can. you can also use $setSize2() https://dev.jamovi.org/api_image-sizing.html let me know if there are any outstanding issues after that. > How exactly does the saving process work? Does it trigg...