From 60f65e8db522c16cd3bb48ae844057951bf2ba6c Mon Sep 17 00:00:00 2001
From: bruna wundervald <brunadaviesw@gmail.com>
Date: Mon, 7 Dec 2015 20:24:30 -0200
Subject: [PATCH] .Rmd file for the shiny app

---
 report.Rmd | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)
 create mode 100644 report.Rmd

diff --git a/report.Rmd b/report.Rmd
new file mode 100644
index 0000000..f101558
--- /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)
+```
+
+
+
+_______________________________________
-- 
GitLab