File: Rcmdr-RMarkdown-Template.Rmd

package info (click to toggle)
rcmdr 2.9-5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,788 kB
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 706 bytes parent folder | download | duplicates (2)
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)
```