Nothing
csdata_wide_to_long <- function(
csdata,
antigen_isos = c("HlyE_IgG", "HlyE_IgA")) {
csdata %>%
as_tibble() %>%
pivot_longer(
cols = antigen_isos,
names_to = "antigen_iso",
values_to = "value"
)
}
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.