mirror of
https://github.com/FlipsideCrypto/Op-Attestation-Research.git
synced 2026-02-06 10:47:15 +00:00
34 lines
865 B
Plaintext
34 lines
865 B
Plaintext
---
|
|
title: " Title "
|
|
author: " Author "
|
|
date: "`r Sys.Date()`"
|
|
output:
|
|
html_document:
|
|
css: "styles.css"
|
|
includes:
|
|
in_header: header.html
|
|
code_folding: hide
|
|
toc: true
|
|
toc_float: true
|
|
editor_options:
|
|
chunk_output_type: console
|
|
---
|
|
|
|
# Intro
|
|
|
|
This is the Flipside Crypto RMarkdown template. It includes an renv lockfile with shroomDK.
|
|
Please ensure renv is installed on your machine and use the provided chunk (click Show Code) to begin.
|
|
|
|
To use this template:
|
|
|
|
1. Clone this repo into a new repo
|
|
2. Rename the R Project
|
|
3. Rename the template Rmd file
|
|
4. Restore the r environment
|
|
5. Push your new repo with new file names.
|
|
6. Begin working! You can edit the header, footer, and styles.css file as needed, some defaults are provided. Use Knit to HTML to view the effects of these defaults.
|
|
|
|
```{r}
|
|
renv::restore()
|
|
library(shroomDK)
|
|
``` |