Nothing
# create a bare Knowledge object using .new_knowledge()
kn1 <- try(.new_knowledge(vars = c("A", "B", "C"), frozen = TRUE))
# create the Knowledge object in the intended way
df <- data.frame(A = rnorm(10), B = rnorm(10), C = rnorm(10))
kn2 <- knowledge(df)
identical(kn1, kn2) # TRUE
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.