Created
March 15, 2019 19:02
-
-
Save medewitt/ee012195f72c6f6e580b2a9bbd0d5552 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Rmarkdown Exercises" | |
author: "Your Name" | |
date: "`r Sys.Date()`" | |
output: | |
html_document: | |
toc: true | |
toc_float: true | |
number_sections: true | |
df_print: paged | |
--- | |
## Markdown Practice | |
### Create A Bulleted List | |
Created a bulleted list that has the name of three fruits. | |
### Create a Numbered List | |
Create a numbered list that indicates four vegetables | |
## Code Chunks | |
Create a few items from the normal distribution (hint: `rnorm`) | |
```{r} | |
``` | |
## Tables | |
Make a `kable` table for the `mtcars` dataset | |
### Show the Code | |
```{r} | |
``` | |
### Don't show the code! | |
```{r} | |
``` | |
### Add a footnote with `kableExtra`? | |
hint you will need to load the `kableExtra` package using the library command. | |
```{r} | |
``` | |
## Tabsets? {.tabset} | |
### Maybe this | |
Add a block quote like using `>` | |
### Or print a graph | |
```{r} | |
hist(mtcars$mpg, breaks = 30) | |
``` | |
## Add Some Code in `python` | |
But don't evaluate it! | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment