Nothing
library(tidyverse)
library(janitor)
states <- state.x77 |>
tibble::as_tibble(rownames = "state") |>
janitor::clean_names() |>
dplyr::mutate(
dplyr::across(
c("population", "income", "frost", "area"),
as.integer
)
)
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.