Search found 2636 matches

by jonathon
Thu Mar 14, 2024 9:11 pm
Forum: Help
Topic: Proportion Test (N Outcomes) bug
Replies: 1
Views: 845

Re: Proportion Test (N Outcomes) bug

Hi,

If you can create an issue over here https://github.com/jamovi/jamovi/issues and provide a .omv file demonstrating the issue (you may need to zip it up, in order to attach it to a github issue) we'll be able to take a look.

With thanks
by jonathon
Thu Mar 14, 2024 11:16 am
Forum: Module development
Topic: Graph outputs - not appearing
Replies: 2
Views: 808

Re: Graph outputs - not appearing

hi roger, the issue might be the size of the state object. see the warning here: https://dev.jamovi.org/tuts0203-state.html#setstate() see if you can shift the actual plotting into the plot function itself. (did you want an invite to our slack group? you may find its easier to ask questions to do wi...
by jonathon
Thu Mar 07, 2024 8:49 am
Forum: Help
Topic: Unconsistent and "NaN" results.
Replies: 1
Views: 1088

Re: Unconsistent and "NaN" results.

Hi,

As you've discovered, first terms in a multiway ANOVA aren't the same as a one-way ANOVA.

As for the 0s and NaNs, i think this might be an issue of "empty cells in your design". R180 has a pretty good explanation here:

viewtopic.php?t=3706

cheers

jonathon
by jonathon
Wed Feb 28, 2024 10:29 pm
Forum: Help
Topic: Cleaning Data - Case-Mean Substitution IF
Replies: 1
Views: 1047

Re: Cleaning Data - Case-Mean Substitution IF

yeah, this is a tricky one. how many items in the measure?

jonathon
by jonathon
Wed Feb 28, 2024 10:25 pm
Forum: Module development
Topic: NAMESPACE issue?
Replies: 2
Views: 1030

Re: NAMESPACE issue?

hi, your repo might be private, so i can't see it. but i wonder if you haven't named your module exactly the same as the R package, and so R doesn't know which package (or guesses incorrectly) which of the two R packages (your module, or the R package) you're trying to use. change the name of your m...
by jonathon
Sun Feb 25, 2024 10:43 pm
Forum: Module development
Topic: Tutorial needs updating
Replies: 2
Views: 904

Re: Tutorial needs updating

oh yup. good catch.
by jonathon
Thu Feb 22, 2024 10:20 pm
Forum: General
Topic: Special Import for jamovi files
Replies: 1
Views: 949

Re: Special Import for jamovi files

yes, that's the intended behaviour.

special import is for importing into an existing data set ... you'll notice if you use 'special import' into the blank A, B, C, data set, those A, B, C, columns are retained.

kind regards

jonathon
by jonathon
Thu Feb 22, 2024 2:09 am
Forum: Module development
Topic: how to display dataframe data in columns?
Replies: 13
Views: 1701

Re: how to display dataframe data in columns?

$setRow() takes a named list of values

table1$setRow(rowKey=21, list(var="Item rank"))

jonathon