Skip to content
Snippets Groups Projects
Commit 1ebe06df authored by Bruna Wundervald's avatar Bruna Wundervald
Browse files

shiny app scripts

parent b6a00e8e
Branches
No related tags found
No related merge requests found
^.*\.Rproj$
^\.Rproj\.user$
Package: FinalProject
Type: Package
Title: What the Package Does (Title Case)
Version: 0.1
Date: 2015-11-24
Author: Who wrote it
Maintainer: Who to complain to <yourfault@somewhere.net>
Description: More about what it does (maybe more than one line)
License: What license is it under?
LazyData: TRUE
\ No newline at end of file
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: Sweave
LaTeX: pdfLaTeX
AutoAppendNewline: Yes
StripTrailingWhitespace: Yes
BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
exportPattern("^[[:alpha:]]+")
----
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)
```
_______________________________________
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment