1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
---
title: "Replace with Main Title"
author: "Your Name"
date: "`r Sys.Date()`" # Uses current date
---
<!--
You can edit this R Markdown document, for example to explain what you're
doing and to draw conclusions from your data analysis.
Auto-generated section titles, typically preceded by ###, can also be edited.
It's generally not a good idea to edit the R code that the R Commander writes,
but you can freely edit between (not within) R "code blocks." Each R code
block starts with ```{r} and ends with ```.
-->
```{r echo=FALSE, message=FALSE}
# include this code chunk as-is to set options
knitr::opts_chunk$set(comment=NA, prompt=TRUE)
library(Rcmdr)
library(car)
library(RcmdrMisc)
```
|