Skip to content

Commit

Permalink
Beginning to transition asciidoc files to rmarkdown files.
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettgman committed Oct 9, 2018
0 parents commit 750ce30
Show file tree
Hide file tree
Showing 248 changed files with 10,520 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
21 changes: 21 additions & 0 deletions 01-intro.Rmd
@@ -0,0 +1,21 @@
# Introduction {#intro}

You can label chapter and section titles using `{#label}` after them, e.g., we can reference Chapter \@ref(intro). If you do not manually label them, there will be automatic labels anyway, e.g., Chapter \@ref(methods).

Figures and tables with captions will be placed in `figure` and `table` environments, respectively.

```{r nice-fig, fig.cap='Here is a nice figure!', out.width='80%', fig.asp=.75, fig.align='center'}
par(mar = c(4, 4, .1, .1))
plot(pressure, type = 'b', pch = 19)
```

Reference a figure by its code chunk label with the `fig:` prefix, e.g., see Figure \@ref(fig:nice-fig). Similarly, you can reference tables generated from `knitr::kable()`, e.g., see Table \@ref(tab:nice-tab).

```{r nice-tab, tidy=FALSE}
knitr::kable(
head(iris, 20), caption = 'Here is a nice table!',
booktabs = TRUE
)
```

You can write citations, too. For example, we are using the **bookdown** package [@R-bookdown] in this sample book, which was built on top of R Markdown and **knitr** [@xie2015].
350 changes: 350 additions & 0 deletions 02-packages.asciidoc

Large diffs are not rendered by default.

912 changes: 912 additions & 0 deletions 03-objects.asciidoc

Large diffs are not rendered by default.

439 changes: 439 additions & 0 deletions 04-notation.asciidoc

Large diffs are not rendered by default.

0 comments on commit 750ce30

Please sign in to comment.