inst/sample-article/article.R

library(plotly)
library(ggplot2)
library(palmerpenguins)

p <- penguins %>%
  ggplot(aes(x = bill_depth_mm, y = bill_length_mm,
             color = species)) +
  geom_point()
ggplotly(p)

Try the rjtools package in your browser

Any scripts or data that you put into this service are public.

rjtools documentation built on May 29, 2024, 9:57 a.m.