Re: ggplot2 plot not rendering in Rj Editor after update to
Posted: Thu Mar 11, 2021 8:17 pm
So related to the posts above:
a) Related to yoshi's post, I also replicate the problem of not being able to create 2 plots in one instance of RjEditor when using ggplot (making violin plots and density plots). A workaround is running two instances of RjEditor with one plot each. This is again an issue only on Macs, version 1.6.18 of jamovi. No issues on PCs.
b) The problem acshephard is talking about also replicates on my Macbook. For clarity something like this WON'T run, and has an infinite loading icon:
ggplot(data, aes(x = quantity, fill = culture)) +
geom_density() +
facet_grid(culture ~ .)
BUT, this WILL run after taking the legend away:
ggplot(data, aes(x = quantity, fill = culture)) +
geom_dotplot() +
facet_grid(culture ~ .) +
guides(fill = FALSE)
a) Related to yoshi's post, I also replicate the problem of not being able to create 2 plots in one instance of RjEditor when using ggplot (making violin plots and density plots). A workaround is running two instances of RjEditor with one plot each. This is again an issue only on Macs, version 1.6.18 of jamovi. No issues on PCs.
b) The problem acshephard is talking about also replicates on my Macbook. For clarity something like this WON'T run, and has an infinite loading icon:
ggplot(data, aes(x = quantity, fill = culture)) +
geom_density() +
facet_grid(culture ~ .)
BUT, this WILL run after taking the legend away:
ggplot(data, aes(x = quantity, fill = culture)) +
geom_dotplot() +
facet_grid(culture ~ .) +
guides(fill = FALSE)