-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
46 lines (39 loc) · 1.09 KB
/
index.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
46
---
title: "Charting Annual Emissions"
author: "David Holstius"
date: "`r Sys.Date()`"
output:
bookdown::gitbook:
df_print: kable
documentclass: book
description: "This is an introduction to charting annual emissions inventory data."
site: "bookdown::bookdown_site"
biblio-style: apalike
link-citations: yes
---
```{r options, include = FALSE, message = FALSE, cache = FALSE}
# html_vignette:
# df_print: kable
# toc: true
# toc_depth: 3
library(knitr)
library(printr)
knitr::opts_chunk$set(
dev = "svg",
cache = TRUE,
message = FALSE,
warning = FALSE,
fig.width = 8,
fig.height = 4,
out.width = 800,
out.height = 400,
dpi = 300)
```
# Introduction
After working through the material in this cookbook, you will understand how to chart:
- annual emission estimates, like those in `BY` or `RY` data;
- annual growth factors, normalized to any year;
- annual throughputs;
- annual emission factors; and
- annualized control factors.
To demonstrate, we'll use some data from the `BY2011` package. Everything will work in **exactly the same way with RY, PY, or BY2015 data**.