[This article was first published on Saturn Elephant, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Here is a way to get a high-quality PNG image with R: save it as SVG first, then convert the SVG file to a PNG file, with the rsvg package.
Let’s see. I construct a hyperbolic Delaunay triangulation with the gyro package:
library(gyro) phi <- (1 + sqrt(5)) / 2 theta <- head(seq(0, pi/2, length.out = 11), -1L) a <- phi^((2*theta/pi)^0.8 - 1) u <- a * cos(theta) v <- a * sin(theta) x <- c(0, u, -v, -u, v) y <- c(0, v, u, -v, -u) pts <- cbind(x, y) / 1.07 hdel <- hdelaunay(pts, model = "U") fcolor <- function(t){ RGB <- colorRamp(hcl.colors(20L, "Berlin"))(t) rgb(RGB[, 1L], RGB[, 2L], RGB[, 3L], maxColorValue = 255) }
Now let’s save the plot as a PNG, directly:
png("hdelaunayU.png", width = 512, height = 512) plotHdelaunay( hdel, vertices = FALSE, color = fcolor ) dev.off()
And now let’s save it as SVG then convert it to PNG:
svg("hdelaunayU.svg") plotHdelaunay( hdel, vertices = FALSE, color = fcolor ) dev.off() rsvg::rsvg_png( "hdelaunayU.svg", "hdelaunayU_from_svg.png", width = 512, height = 512 )
Observe the difference:
To leave a comment for the author, please follow the link and comment on their blog: Saturn Elephant.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.