Last active
June 7, 2021 20:19
-
-
Save nhoffman/678e40609a90f96a94925d0f0fa657d8 to your computer and use it in GitHub Desktop.
rmarkdown template
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: [title] | |
author: Noah Hoffman | |
date: "`r format(Sys.time(), '%Y-%m-%d')`" | |
output: | |
html_document: | |
toc: true | |
--- | |
# setup | |
```{r imports} | |
library(dplyr) | |
library(rmarkdown) | |
library(knitr) | |
library(data.table) | |
library(lattice) | |
library(latticeExtra) | |
``` | |
```{css} | |
pre { | |
overflow-x: auto; | |
} | |
pre code { | |
overflow-wrap: normal; | |
white-space: pre; | |
} | |
``` | |
```{r setup} | |
knitr::opts_chunk$set(cache=TRUE) | |
``` | |
# meta | |
```{r} | |
getwd() | |
``` | |
```{sh} | |
git --no-pager log -n1 | |
``` | |
```{sh} | |
git status | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment