Skip to content

Commit

Permalink
Add download buttons for data
Browse files Browse the repository at this point in the history
  • Loading branch information
rrwen committed Sep 27, 2024
1 parent ace4758 commit f56b348
Show file tree
Hide file tree
Showing 24 changed files with 120 additions and 70 deletions.
148 changes: 79 additions & 69 deletions docs/index.html

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions docs/index_files/jszip-1.13.6/jszip.min.js

Large diffs are not rendered by default.

Binary file modified manuscript/figures/fig-maps.pdf
Binary file not shown.
Binary file modified manuscript/figures/fig-methods.pdf
Binary file not shown.
Binary file modified manuscript/figures/fig-yearly-change.pdf
Binary file not shown.
Binary file modified manuscript/figures/fig-yearly-len.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-change-calg.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-change-toron.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-change-vanc.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-compare-calg.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-compare-toron.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-compare-vanc.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-criteria-calg.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-criteria-toron.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-criteria-vanc.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-map-calg.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-map-toron.pdf
Binary file not shown.
Binary file modified manuscript/figures/sfig-map-vanc.pdf
Binary file not shown.
6 changes: 5 additions & 1 deletion src/index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ knitr::opts_chunk$set(
)
```

**NOTE: Please allow ~30 seconds for the page to load completely.**

# Installation

1. Install [R](https://www.r-project.org/)
Expand Down Expand Up @@ -183,8 +185,10 @@ Modify the default `datatable` function from `DT` library to generate interactiv
```{r}
datatable <- function(...) {
args <- list(...)
args$extensions <- if (!"extensions" %in% args) "Buttons" else args$extensions
args$filter <- if (!"filter" %in% args) "top" else args$filter
args$fillContainer <- if (!"fillContainer" %in% args) T else args$fillContainer
args$options <- if (!"options" %in% args) list(scrollY = "350px", buttons = c("copy", "csv", "excel"), dom = "Bfrtip") else args$options
return(do.call(DT::datatable, args))
}
```
Expand Down Expand Up @@ -1174,7 +1178,7 @@ plot_yearly_diff <- function(
## Function 5: filter_criteria
Fitler for segment inclusion criteria
Filter for segment inclusion criteria.
This function applies segment inclusion critieria to a list of data.frames. Optionally creates a data.frame of counts, segment lengths, and other exclusions (duplicates, misclassifications) per inclusion criteria step along with a list of the data.frames after applying the inclusion criteria.
Expand Down

0 comments on commit f56b348

Please sign in to comment.