I have R on a headless linux server and I have NO write permissions to the file system. This has forced me down a path of wanting to save my pictures to a DB (PostgreSQL in this case).
I have searched around for a solution, but every one I find usually saves to a file first and then reads the file back into R as bytes and then store the bytes in the DB.
This stackoverflow post from 10 years ago states that all the graphic devices are file based. Has there been a change to R since then that would allow me to get the bytes? How to save R plot image to database?
This solution looks interesting but it still requires write permissions: How to get pathview plot displayed directly (rather than saving as a file) in R?
I had the idea to try using text.connection() or capture.output(), hoping it create a text vector that would contain the bytes of the image.
Here are the two things I tired:
logmodel_solar <- glm(hasfire ~ cs_rh_min + cs_air_max_temp + cs_precip + cs_solar, data=df, family = binomial("logit"))
zz <- textConnection("foo", "w")
sink(zz)
plot(logmodel_solar)
sink()
close(zz)
This crashes R or gives me this
> cat(zz, sep = "\n")
3
So then I tried this:
logmodel_solar <- glm(hasfire ~ cs_rh_min + cs_air_max_temp + cs_precip + cs_solar, data=df, family = binomial("logit"))
yy <- capture.output(plot(logmodel_solar))
> cat(yy, sep = "\n")
> yy
character(0)
So I guess my questions are:
- Does R still only output graphics to files
- If not how do I get a hold of the bytes
I got the answer from a colleague who said it tooks months to figure this out. It is not intuitive but it works.
################## Now we plot a figure from the model