Plotbuilder adaptation for jamovi – necessary or possible?

Everything related to the development of modules in jamovi
User avatar
yurismol
Posts: 47
Joined: Sat May 27, 2023 6:40 am
Location: Chita
Contact:

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Post by yurismol »

sbalci wrote: Wed Oct 08, 2025 8:18 am 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.
For example in my code something like this work fine:

Code: Select all

p <- ggmice::plot_pattern(data=dat, square=TRUE, rotate=TRUE)
p <- p + ggplot2::scale_fill_manual(values=fill, labels=c(.("missing"), .("observed"))) +
            ggplot2::theme(text=ggplot2::element_text(size=ggtheme[[1]]$text$size))
Post Reply