Re: [R-sig-eco] change axis scale plot R

2021-06-03 Thread brian knaus
Hi Luis, my suggestion follows. ``` library(geepack) library(ggplot2) library(sjPlot) library(ggeffects) # #Copy dataset before following the code # dat <- read.delim("clipboard", dec=","); attach(dat) # I orefer to read from file. dat <- readr::read_csv("Data - Hoja 1.csv") dat dat$Id <-

Re: [R-sig-eco] change axis scale plot R

2021-06-03 Thread Torsten Hauffe
Hi Luis, You can avoid the pixelation by exporting your plot as vector graphics (e.g. functions pdf() or svg()) instead of pixel formats (i.e. png(), tiff() etc). There is also ggsave("MyPlot.pdf") but I don't know about ggplot very well. pdf("MyPlot.pdf") p= plot_model(m5, type = "pred", terms

[R-sig-eco] change axis scale plot R

2021-06-03 Thread Luis Fernando GarcĂ­a
Dear all, I am wanting to improve a plot made with the package sjPlot. When plotting this model Plot produced looks like this https://docs.google.com/presentation/d/1Pqm6BcJXdSQ6U1zmv5FV7gBcn1afHHv7rlQHe6j59_c/edit?usp=sharing, especially red and green lines. I just have two concerns with