accessible.tips/themes/hugo-xmin/exampleSite/content/post/2017-06-21-an-r-markdown-example.Rmarkdown
KemoNine 5bb3087182 import yihui/hugo-xmin theme from https://github.com/yihui/hugo-xmin with the following branches merged
feature/github-edit
  feature/highlight.js
  feature/pagination
  feature/show-tags
  feature/show-toc
2023-03-18 12:15:46 -04:00

20 lines
331 B
Plaintext

---
title: An R Markdown Example
author: Yihui Xie
date: '2017-06-21'
categories:
- Example
- R
tags:
- blogdown
slug: an-r-markdown-example
---
This is a simple R Markdown example, with a single R code chunk below.
```{r}
knitr::kable(head(mtcars))
```
The table shows the first 6 rows of the `mtcars` dataset in base R.