Page 2 of 2

Re: Plotbuilder adaptation for jamovi – necessary or possible?

Posted: Thu Oct 09, 2025 9:02 am
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))