forked from jcvdav/make_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdraft.Rmd
More file actions
66 lines (31 loc) · 719 Bytes
/
draft.Rmd
File metadata and controls
66 lines (31 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
title: "Fishy analysis"
author: "EcoDataScience"
date: "4/27/2021"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE,
warning = FALSE,
message = FALSE)
suppressPackageStartupMessages({
library(here)
})
```
# Intro
Intro goes here
# Methods
We make plots and regressions
# Results
## Abundance through time
```{r}
knitr::include_graphics(here("results", "img", "time_series.png"))
```
## Latest abundance
```{r}
knitr::include_graphics(here("results", "img", "first_year.png"))
```
```{r}
# htmltools::includeMarkdown()
htmltools::includeHTML(path = here("results", "tab", "reg_table.html"))
```