Convert ggplot to tidyplot
Examples
gg <-
study %>%
ggplot2::ggplot(ggplot2::aes(x = treatment, y = score, color = treatment)) +
ggplot2::geom_point()
gg
gg %>% as_tidyplot()
Convert ggplot to tidyplot
gg <-
study %>%
ggplot2::ggplot(ggplot2::aes(x = treatment, y = score, color = treatment)) +
ggplot2::geom_point()
gg
gg %>% as_tidyplot()