Nothing
names_from_expression <- function(expr){
if(is.call(expr)){
expr |>
as.list() |>
utils::tail(-1) |>
lapply(names_from_expression) |>
unlist()
}else if(is.symbol(expr)){
as.character(expr)
}
}
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.