Search found 20 matches

by vjalby
Thu Nov 20, 2025 7:21 am
Forum: General
Topic: Composite boxplots
Replies: 10
Views: 20920

Re: Composite boxplots

You can try the boxplot version of vijPlots module !
by vjalby
Tue Oct 07, 2025 11:08 am
Forum: Module development
Topic: Plotbuilder adaptation for jamovi – necessary or possible?
Replies: 15
Views: 43495

Re: Plotbuilder adaptation for jamovi – necessary or possible?

vijPlots module also adds many options to jamovi builtin plots :slightly_smiling_face:
by vjalby
Wed Aug 27, 2025 5:26 pm
Forum: Module development
Topic: Making textbox size larger
Replies: 2
Views: 21750

Re: Making textbox size larger

you can add width: largest in your .u.yaml file, eg.

Code: Select all

              - type: TextBox
                name: yLabel
                format: string
                width: largest
by vjalby
Sat Jun 07, 2025 9:41 pm
Forum: Module development
Topic: Likert Plot
Replies: 2
Views: 145878

Re: Likert Plot

1a) if you group "by group", the whole variable name is displayed : https://vincent.jalby.org/tmp/likert.jpg Not sure it makes sense when grouping "by variable" 1b) I may. Tell me what you expect by PM. 2+3) https://www.mdpi.com/2673-8392/5/1/18 may be a good start. To be concise...
by vjalby
Wed Apr 09, 2025 10:39 am
Forum: jamovi development
Topic: Spacing between columns / Cell.BEGIN_GROUP like
Replies: 2
Views: 67092

Spacing between columns / Cell.BEGIN_GROUP like

Hi, i'm working to a module with a wide table with several groups (with superTitle) of columns. It seems there's no way to specify the "spacing" between two adjacents groups (as we can for row groups with format / Cell.BEGIN_GROUP). I tried to add an empty column, but the result doesn't lo...
by vjalby
Tue Jan 07, 2025 11:27 am
Forum: jamovi development
Topic: 2.6.19/21 export bug
Replies: 3
Views: 95968

Re: 2.6.19/21 export bug

Sorry, but maybe another bug with 2.6.21 mac-arm (but not in 2.6.19) : jamovi fails to open files (omv/sav/XLSX) when using the "system" dialog (||| > Open > "Browse") showing an "Uploading" message forever, while it works if I use the jamovi-built-in file-system dialog...
by vjalby
Mon Jan 06, 2025 2:30 pm
Forum: jamovi development
Topic: 2.6.19/21 export bug
Replies: 3
Views: 95968

2.6.19/21 export bug

Happy New Year to all ! With the latest version of jamovi (at least the 2 lasts, Mac-Silicon), when exporting results (|||>Export > pdf), the title of tables (eg. "One Sample T-Test") is displayed BELOW the names of columns (eg. "Statistic, df, p"). It happens with Descriptive an...
by vjalby
Fri Oct 25, 2024 2:03 pm
Forum: Module development
Topic: additional ggplot2 stat layer
Replies: 2
Views: 86087

Re: additional ggplot2 stat layer

I ran into the same problem while using the prop stats (after_stat(prop) / stat= "prop"). I think I was able to fix it using the (alt ?) name "StatProp" instead of "prop". (StatProp is explicitly exported by ggstats in NAMESPACE file). There's also "StatCross"...