Nothing
test_lm_proj = function(){
# standard lm()
fit = lm(Petal.Width ~ Sepal.Length + Sepal.Width, iris)
res1 = coef(summary(fit))['Sepal.Width',]
# Hypothesis test of Sepal.Width using pre-fit model
obj = decorrelate:::lm.projection(iris$Petal.Width, model.matrix(~Sepal.Length, iris))
res2 = decorrelate:::lm.test(obj, iris$Sepal.Width)
checkEqualsNumeric(res1, res2)
}
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.