-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.Rmd
More file actions
23 lines (18 loc) · 753 Bytes
/
index.Rmd
File metadata and controls
23 lines (18 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
title: "RapidBook"
author: "Jon Areas"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
github-repo: "jxareas/RapidBook"
url: 'https://jxareas.github.io/RapidBook/'
description: "A template to rapidly deploy Python/R based books using Bookdown."
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
# Here you load all your project's packages
library(ggplot2)
library(dplyr)
```
# Preliminary Information {.unnumbered}
This is an artificial book to demonstrate the look of the [RapidBook Template](https://github.com/jxareas/RapidBook), which is a template to rapidly deploy either Python or R based books using Bookdown.
As this uses R Markdown, Python must be used through the `reticulate` interface.