diff --git a/report.Rmd b/report.Rmd new file mode 100644 index 0000000000000000000000000000000000000000..f10155878cd5e9a4e76496360984da2152f501bf --- /dev/null +++ b/report.Rmd @@ -0,0 +1,25 @@ +--- +title: "Linear Regression Report - Generated in the Shiny App, authored by Bruna Wundervald." +--- + + +*Here is my regression model:* +```{r, echo=TRUE} +m1 <- fc()$m +summary(m1) +``` + +*Here is the ANOVA generated by this model:* +```{r, echo=TRUE} +anova(m1) +``` + + +*And here are the plots to check for departures from homocedasticity and normality of the model:* +```{r, echo=TRUE} +par(mfrow=c(2,2)); plot(m1); layout(1) +``` + + + +_______________________________________