Search found 2629 matches

by jonathon
Sun Feb 25, 2024 10:43 pm
Forum: Module development
Topic: Tutorial needs updating
Replies: 2
Views: 829

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: 859

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: 1585

Re: how to display dataframe data in columns?

$setRow() takes a named list of values

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

jonathon
by jonathon
Wed Feb 21, 2024 10:45 pm
Forum: General
Topic: Polish translation mistake in chi-square
Replies: 9
Views: 13661

Re: Polish translation mistake in chi-square

hi, so jamovi is taking the values from here: https://hosted.weblate.org/translate/jamovi/jmv-i18n/pl/?sort_by=-priority%2Cposition&offset=1346 https://hosted.weblate.org/translate/jamovi/jmv-i18n/pl/?sort_by=-priority%2Cposition&offset=1347 https://hosted.weblate.org/translate/jamovi/jmv-i1...
by jonathon
Tue Feb 20, 2024 9:17 pm
Forum: General
Topic: Polish translation mistake in chi-square
Replies: 9
Views: 13661

Re: Polish translation mistake in chi-square

hi adaren,

these fixes should have made it into the latest versions.

can you double check that everything is correct in weblate? then can you provide an example of a translation that isn't appearing correctly.

with thanks
by jonathon
Tue Feb 20, 2024 9:15 pm
Forum: Module development
Topic: how to display dataframe data in columns?
Replies: 13
Views: 1585

Re: how to display dataframe data in columns?

no worries ikchan, you should have received a slack invitation.

cheers
by jonathon
Tue Feb 20, 2024 7:29 am
Forum: Module development
Topic: how to display dataframe data in columns?
Replies: 13
Views: 1585

Re: how to display dataframe data in columns?

still not completely clear to me what you're trying to do, but hopefully this can get you on the right track. here you can see me populating the 'Fuzzy Score Table' from the data frame. Screenshot 2024-02-20 at 18.23.28.png to achieve this, i add a .init() function beside the .run() function that lo...
by jonathon
Tue Feb 20, 2024 6:49 am
Forum: Module development
Topic: how to display dataframe data in columns?
Replies: 13
Views: 1585

Re: how to display dataframe data in columns?

hi, so the problem is the way you're reading values from the df4 data frame. this code: value <- df4$value description <- df4$description $value and $description don't exist in df4, and so these will just be assigned NULL. to read the values from a data frame, you'll probably want to use something l...
by jonathon
Tue Feb 20, 2024 6:08 am
Forum: Module development
Topic: how to display dataframe data in columns?
Replies: 13
Views: 1585

Re: how to display dataframe data in columns?

do you have an example data set i can use with this?

(most modules won't need to use addColumn() because the .r.yaml file sets up the tables appropriately)

with thanks
by jonathon
Tue Feb 20, 2024 5:53 am
Forum: Module development
Topic: how to display dataframe data in columns?
Replies: 13
Views: 1585

Re: how to display dataframe data in columns?

hi, taking a look at your code, i can't see anything obviously wrong with it, so i would expect it to work ... if it doesn't work, i assume there's something a bit subtle we're overlooking. if you commit this module to a github repo, and share the link with us, someone should be able to figure out w...