Skip to content

Instantly share code, notes, and snippets.

@dgkeyes
Last active July 30, 2018 23:12
Show Gist options
  • Save dgkeyes/4d016a0182f952b4f612e548b52b8bdd to your computer and use it in GitHub Desktop.
Save dgkeyes/4d016a0182f952b4f612e548b52b8bdd to your computer and use it in GitHub Desktop.
RMarkdown setup chunk #R
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE,
warning = FALSE,
message = FALSE,
dpi = 600,
fig.align = "center",
fig.width = 6,
fig.height = 4)
library(tidyverse)
library(captioner)
library(googlesheets)
library(datapasta)
source("~/Google Drive/Work/R/DK functions and themes/themes/mna_themes.R")
source("~/Google Drive/Work/R/DK functions and themes/functions/dk_functions.R")
fig_nums <- captioner()
table_nums <- captioner(prefix = "Table")
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment