Skip to content
Snippets Groups Projects
Commit 8f4148a1 authored by B.Anderson's avatar B.Anderson
Browse files

fixed yaml, rmeoved the huge table that messes up the pdf

parent 4f3393ed
No related branches found
No related tags found
3 merge requests!3merge a few edits,!2fixed pdf build,!1Re run ellis full data
This commit is part of merge request !3. Comments created here will be created in the context of that merge request.
...@@ -19,6 +19,8 @@ output: ...@@ -19,6 +19,8 @@ output:
bookdown::pdf_document2: bookdown::pdf_document2:
fig_caption: yes fig_caption: yes
number_sections: yes number_sections: yes
toc: yes
toc_depth: 2
bookdown::word_document2: bookdown::word_document2:
fig_caption: yes fig_caption: yes
number_sections: yes number_sections: yes
...@@ -80,21 +82,6 @@ kableExtra::kable(head(origDataDT), digits = 2, ...@@ -80,21 +82,6 @@ kableExtra::kable(head(origDataDT), digits = 2,
kable_styling() kable_styling()
``` ```
Check data prep worked OK.
```{r dataPrep}
# check
t <- origDataDT[, .(nObs = .N,
firstDate = min(rDateTime, na.rm = TRUE),
lastDate = max(rDateTime, na.rm = TRUE),
meankW = mean(kW, na.rm = TRUE)
), keyby = .(region, feeder_ID)]
kableExtra::kable(t, digits = 2,
caption = "Counts per feeder (long table)") %>%
kable_styling()
```
Do a duplicate check by feeder_ID, dateTime & kW. In theory there should not be any. Do a duplicate check by feeder_ID, dateTime & kW. In theory there should not be any.
```{r checkForDuplicates} ```{r checkForDuplicates}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment