├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R ├── paged_grid.R ├── paged_hazelnuts.R ├── paged_windmill.R └── utils.R ├── README.md ├── _pkgdown.yml ├── inst ├── resources │ ├── css │ │ ├── style_grid.css │ │ ├── style_hazelnuts.css │ │ └── style_windmill.css │ ├── html │ │ └── template_paged.html │ ├── img │ │ ├── abstract-img.jpg │ │ ├── hazelnuts-img.jpg │ │ ├── monkey-img.jpg │ │ ├── nuts-img.jpg │ │ ├── rru-logo-maroon.svg │ │ ├── star-img.jpg │ │ └── windmill-img.jpg │ ├── logo │ │ ├── circle-logo.svg │ │ ├── dots-logo.svg │ │ └── square-logo.svg │ └── utils │ │ ├── grid_alpha.png │ │ ├── grid_white.png │ │ └── line.svg └── rmarkdown │ └── templates │ ├── paged_grid │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml │ ├── paged_hazelnuts │ ├── skeleton │ │ └── skeleton.Rmd │ └── template.yaml │ └── paged_windmill │ ├── skeleton │ └── skeleton.Rmd │ └── template.yaml ├── man ├── paged_grid.Rd ├── paged_hazelnuts.Rd └── paged_windmill.Rd ├── pagedreport.Rproj ├── tests ├── testthat.R └── testthat │ └── test-expect_rmd.R └── vignettes ├── .gitignore ├── images ├── grid.gif ├── hazelnuts.gif └── windmill.gif └── reports.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2020 2 | COPYRIGHT HOLDER: Thomas Vroylandt & David Keyes 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/paged_grid.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/R/paged_grid.R -------------------------------------------------------------------------------- /R/paged_hazelnuts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/R/paged_hazelnuts.R -------------------------------------------------------------------------------- /R/paged_windmill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/R/paged_windmill.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- 1 | url: https://pagedreport.rfortherestofus.com/ 2 | -------------------------------------------------------------------------------- /inst/resources/css/style_grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/css/style_grid.css -------------------------------------------------------------------------------- /inst/resources/css/style_hazelnuts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/css/style_hazelnuts.css -------------------------------------------------------------------------------- /inst/resources/css/style_windmill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/css/style_windmill.css -------------------------------------------------------------------------------- /inst/resources/html/template_paged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/html/template_paged.html -------------------------------------------------------------------------------- /inst/resources/img/abstract-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/img/abstract-img.jpg -------------------------------------------------------------------------------- /inst/resources/img/hazelnuts-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/img/hazelnuts-img.jpg -------------------------------------------------------------------------------- /inst/resources/img/monkey-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/img/monkey-img.jpg -------------------------------------------------------------------------------- /inst/resources/img/nuts-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/img/nuts-img.jpg -------------------------------------------------------------------------------- /inst/resources/img/rru-logo-maroon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/img/rru-logo-maroon.svg -------------------------------------------------------------------------------- /inst/resources/img/star-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/img/star-img.jpg -------------------------------------------------------------------------------- /inst/resources/img/windmill-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/img/windmill-img.jpg -------------------------------------------------------------------------------- /inst/resources/logo/circle-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/logo/circle-logo.svg -------------------------------------------------------------------------------- /inst/resources/logo/dots-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/logo/dots-logo.svg -------------------------------------------------------------------------------- /inst/resources/logo/square-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/logo/square-logo.svg -------------------------------------------------------------------------------- /inst/resources/utils/grid_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/utils/grid_alpha.png -------------------------------------------------------------------------------- /inst/resources/utils/grid_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/utils/grid_white.png -------------------------------------------------------------------------------- /inst/resources/utils/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/resources/utils/line.svg -------------------------------------------------------------------------------- /inst/rmarkdown/templates/paged_grid/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/rmarkdown/templates/paged_grid/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/paged_grid/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/rmarkdown/templates/paged_grid/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/paged_hazelnuts/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/rmarkdown/templates/paged_hazelnuts/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/paged_hazelnuts/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/rmarkdown/templates/paged_hazelnuts/template.yaml -------------------------------------------------------------------------------- /inst/rmarkdown/templates/paged_windmill/skeleton/skeleton.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/rmarkdown/templates/paged_windmill/skeleton/skeleton.Rmd -------------------------------------------------------------------------------- /inst/rmarkdown/templates/paged_windmill/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/inst/rmarkdown/templates/paged_windmill/template.yaml -------------------------------------------------------------------------------- /man/paged_grid.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/man/paged_grid.Rd -------------------------------------------------------------------------------- /man/paged_hazelnuts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/man/paged_hazelnuts.Rd -------------------------------------------------------------------------------- /man/paged_windmill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/man/paged_windmill.Rd -------------------------------------------------------------------------------- /pagedreport.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/pagedreport.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-expect_rmd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/tests/testthat/test-expect_rmd.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/images/grid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/vignettes/images/grid.gif -------------------------------------------------------------------------------- /vignettes/images/hazelnuts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/vignettes/images/hazelnuts.gif -------------------------------------------------------------------------------- /vignettes/images/windmill.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/vignettes/images/windmill.gif -------------------------------------------------------------------------------- /vignettes/reports.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfortherestofus/pagedreport/HEAD/vignettes/reports.Rmd --------------------------------------------------------------------------------