let us take a look at this ... we really want to discourage people from using the Html element as much as possible.
jonathon
Search found 2949 matches
- 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: 733
- Fri Feb 20, 2026 10:26 pm
- Forum: Statistics
- Topic: Meta Analysis and error: The condition has length >1
- Replies: 2
- Views: 1387
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
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
- Tue Feb 10, 2026 8:37 am
- Forum: Statistics
- Topic: Chi-square test not working because of missing values
- Replies: 6
- Views: 24348
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...
- Mon Feb 09, 2026 10:32 pm
- Forum: Statistics
- Topic: Chi-square test not working because of missing values
- Replies: 6
- Views: 24348
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...
- Sun Feb 08, 2026 10:31 pm
- Forum: Module development
- Topic: plot$setSize() in .run() works interactively but fails on Export - looking for best practices
- Replies: 3
- Views: 12534
Re: plot$setSize() in .run() works interactively but fails on Export - looking for best practices
FYI, we did find a bug in $setSize2() ... fix will go out in 2.7.18
jonathon
jonathon
- Sun Feb 08, 2026 3:34 am
- Forum: Help
- Topic: Calculating mean based on different number of cells containing values
- Replies: 5
- Views: 16412
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 ...
- Sun Feb 08, 2026 1:15 am
- Forum: jamovi development
- Topic: Windows on an ARM64 Machine
- Replies: 1
- Views: 2196
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
but yes, the cloud version is a good option too.
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: 17316
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
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: 12534
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...
- Fri Feb 06, 2026 10:30 pm
- Forum: Help
- Topic: Calculating mean based on different number of cells containing values
- Replies: 5
- Views: 16412
Re: Calculating mean based on different number of cells containing values
i think you're just missing a bracket on the end? IF(COUNT(v1,v2,v3,v4,v5,v6,v7,v8)>=7,(SUM(v1,v2,v3,v4,v5,v6,v7,v8)-MIN(v1,v2,v3,v4,v5,v6,v7,v8))/6, SUM(v1,v2,v3,v4,v5,v6,v7,v8)/6) not sure if the rest of the logic of your formula is correct, but this gets us passed the mis-specified error. reading...