-
Notifications
You must be signed in to change notification settings - Fork 1
/
report.Rmd
45 lines (39 loc) · 975 Bytes
/
report.Rmd
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: ""
author: ""
date: ""
output:
html_document:
mathjax: null
theme: null
highlight: null
---
```{r setup, include=FALSE}
library(icesTAF)
library(htmltools)
library(dplyr)
library(DT)
knitr::opts_chunk$set(echo = FALSE)
```
<br>
<br>
<!--
[<img align="right" alt="ICES Logo" width="17%" height="17%" src="http://ices.dk/_layouts/15/1033/images/icesimg/iceslogo.png">](http://ices.dk)
-->
_Last updated on `r format(Sys.time(), format = "%d %B %Y at %H:%M:%S")`._
## Stock Categories
```{r read_data}
cats <- read.taf("report/StockCategories.csv")
```
```{r table}
caption <- ""
datatable(cats,
escape = FALSE,
caption = tags$caption(style = "caption-side: bottom; text-align: center;", em(caption)),
rownames = FALSE,
options = list(pageLength = 100,
autoWidth = TRUE,
dom = "ftp"),
elementId = "stock-table"
)
```