WebGL vs SVG in R in R
How to create plots using WebGL
New to Plotly?
Plotly is a free and open-source graphing library for R. We recommend you read our Getting Started guide for the latest installation or upgrade instructions, then move on to our Plotly Fundamentals tutorials or dive straight in to some Basic Charts tutorials.
WebGL vs SVG in R
Recent versions of the R package include the toWebGL()
function, which converts any eligible SVG graph into a WebGL plot. With WebGL, we can render way more elements in the browser.
WebGL with 50,000 points
library(plotly)
p <- ggplot(data = diamonds, aes(x = carat, y = price, color = cut)) +
geom_point(alpha = 0.01)
fig <- ggplotly(p)
fig <- fig %>% toWebGL()
fig