Nothing
# glm fit on iris
fit_glm <- glm(y ~ treatment * s1 + covar, data = dummy_data)
# lm fit on iris
fit_lm <- lm(y ~ treatment * s1 + covar, data = dummy_data)
# glm fit on ToothGrowth
fit_binom <- glm(y_b ~ treatment * s1 + covar, data = dummy_data, family = binomial())
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.