Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Rmd to gh-page test
  • Loading branch information
tmillc committed Jul 11, 2016
1 parent 7eb3877 commit 9ebc98f
Show file tree
Hide file tree
Showing 2 changed files with 201 additions and 1 deletion.
39 changes: 39 additions & 0 deletions index.Rmd
@@ -0,0 +1,39 @@
---
title: "TestDocument"
author: "c"
date: "7/10/2016"
output:
html_document:
highlight: textmate
number_sections: yes
theme: autumn
toc: yes
---

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.

When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

```{r}
makeCacheMatrix <- function(x = matrix()) {
inverse<- NULL
set <- function(y) {
x <<- y
inverse<<- NULL
}
get <- function() x
setInverse <- function(inverse) inverse<<- inverse
getInverse <- function() inverse
list(set = set, get = get,
setInverse = setInverse,
getInverse = getInverse)
}
```

You can also embed plots, for example:

```{r, echo=FALSE}
plot(cars)
```

Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
163 changes: 162 additions & 1 deletion index.html

Large diffs are not rendered by default.

0 comments on commit 9ebc98f

Please sign in to comment.