#suppress the warnings and other messages from showing in the knitted file. knitr::opts_chunk$set(fig.width=7, fig.height=5,fig.path='figures/',echo=TRUE,warning=FALSE,message=FALSE)
library(altEASI)
Score1 <- c(5,6,6,7,7,7,8,8,9) Score2 <- c(6,7,8,8,7,9,7,9,9) Outcome <- c(72,69,75,84,72,81,75,84,81) RegressionData <- data.frame(Score1,Score2,Outcome) RegressionData
pvaRegression(Outcome~Score1+Score2)
ciRegression(Outcome~Score1+Score2) ciRegression(Outcome~Score1+Score2,conf.level=.99)
cipRegression(Outcome~Score1+Score2) cipRegression(Outcome~Score1+Score2,conf.level=.99)
nhstRegression(Outcome~Score1+Score2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.