Page 1 of 2

Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Sun Oct 05, 2025 9:11 am
by vinschger
JASP has introduced Plotbuilder (beta) by Mátyás Bukva. The plots look impressive. Is this functionality already available in existing jamovi modules? If not, would it be feasible to adapt the JASP module and release it as a jamovi module?

https://www.linkedin.com/posts/mátyás-b ... dAED9oqLYQ

https://github.com/jasp-stats/jaspDescriptives/pull/345

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Sun Oct 05, 2025 12:34 pm
by sbalci
There are some trials here:
mimicking esquisse package: https://github.com/sbalci/ClinicoPathJa ... seauto.b.R
mimicking tidyplots package: https://github.com/sbalci/ClinicoPathJa ... yplots.b.R
mimicking ggstatsplot package: https://github.com/sbalci/jjstatsplot/b ... splot2.b.R (this will be in jjstatsplot release soon)

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Sun Oct 05, 2025 2:39 pm
by vinschger
Dear sbalci

I have installed your modules: jsurvival, clinicopathdescriptives and meddecide.
There are so many modules with so many features, maybe I have missed any further modules that you have released.

where do I find the tidyplots package in above mentioned modules?
They look really impressive: https://tidyplots.org

Thank you in advance for your help.

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Sun Oct 05, 2025 4:16 pm
by sbalci
itdyplots is still work in progress. I am still trying it. I am not sure if it will be feasible.

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Mon Oct 06, 2025 11:54 pm
by jonathon
jamovi 2.7 has the plots tab, which makes a number of plots available.

this might be preferable to a "plot builder".

jonathon

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Tue Oct 07, 2025 7:04 am
by sbalci
I agree that plots feature is very useful. And enough for most cases.
Will there be syntax view and will we be able to add ggplot layers on that syntax generated plot?

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Tue Oct 07, 2025 11:08 am
by vjalby
vijPlots module also adds many options to jamovi builtin plots :slightly_smiling_face:

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Tue Oct 07, 2025 2:42 pm
by sbalci
yes, vijPlots are indeed very nice and useful. With native jamovi plots they cover most analysis.

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Tue Oct 07, 2025 11:06 pm
by jonathon
> Will there be syntax view and will we be able to add ggplot layers on that syntax generated plot?

ravi is working on the generation of ggplot code for each analysis.

you might need to elaborate on what you mean by ggplot layers.

jonathon

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Wed Oct 08, 2025 8:18 am
by sbalci
Foe example I get the code as

ggplot(data, aes(x, y, label = rownames(data)))

and want to add another text, or legend

p + geom_text()

If this works, then it will be very useful.