Nothing
# import stars data for HR diagram
library(tidyverse)
stars <- read.table("inst/extdata/HRlist2.txt")
names(stars) <- c("star", "magnitude", "temp", "type")
stars$type <- str_remove(stars$type, "[^A-Z]+")
save(stars, file = "data/stars.rda", compress = "xz")
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.