├── .Rbuildignore ├── .gitignore ├── .lintr ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── abs-path-checking.R ├── auto_cogs.R ├── charm.R ├── cog.R ├── facet_trelliscope.R ├── helpers.R ├── htmlwidget.R ├── input_cogs.R ├── json_writers.R ├── make_png.R ├── state.R ├── thumbnail.R ├── tidy.R ├── trelliscope.R └── trelliscopejs-package.R ├── README.md ├── _pkgdown.yml ├── appveyor.yml ├── codecov.yml ├── cran-comments.md ├── data └── mpg_labels.R ├── docs ├── 404.html ├── LICENSE-text.html ├── apple-touch-icon-120x120.png ├── apple-touch-icon-152x152.png ├── apple-touch-icon-180x180.png ├── apple-touch-icon-60x60.png ├── apple-touch-icon-76x76.png ├── apple-touch-icon.png ├── articles │ ├── index.html │ ├── trelliscopejs.html │ └── trelliscopejs_files │ │ └── figure-html │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-3-1.png │ │ └── unnamed-chunk-4-1.png ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── link.svg ├── logo.png ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml └── reference │ ├── Trelliscope-shiny.html │ ├── as_cognostics.html │ ├── cog.html │ ├── cog_disp_filter.html │ ├── cog_href.html │ ├── cogs.html │ ├── facet_trelliscope.html │ ├── figures │ ├── logo.png │ └── trelliscope.png │ ├── img_panel.html │ ├── img_panel_local.html │ ├── index.html │ ├── map2_cog.html │ ├── map2_plot.html │ ├── map_cog.html │ ├── map_plot.html │ ├── mpg_labels.html │ ├── panel.html │ ├── panels.html │ ├── prepare_display.html │ ├── print.facet_trelliscope.html │ ├── set_labels.html │ ├── sort_spec.html │ ├── trelliscope.html │ ├── trelliscopejs-package.html │ ├── update_display_list.html │ ├── write_cognostics.html │ ├── write_config.html │ ├── write_display_obj.html │ ├── write_panel.html │ └── write_panels.html ├── inst └── htmlwidgets │ ├── lib │ └── trelliscopejs_widget │ │ ├── css │ │ ├── 2.1c1d28a5.chunk.css │ │ └── main.ef767570.chunk.css │ │ ├── js │ │ ├── 2.6925164e.chunk.js │ │ ├── main.c951d10a.chunk.js │ │ └── runtime-main.d9025fd8.js │ │ └── media │ │ ├── icomoon.5dd3ffcb.eot │ │ ├── icomoon.7a81c5bd.woff │ │ ├── icomoon.8454373a.ttf │ │ ├── icomoon.bb221738.svg │ │ ├── opensans-light-webfont.2e2ab17f.woff │ │ ├── opensans-light-webfont.fc71142f.woff2 │ │ ├── opensans-regular-webfont.9503b8a2.woff │ │ └── opensans-regular-webfont.f10027aa.woff2 │ ├── trelliscopejs_widget.js │ └── trelliscopejs_widget.yaml ├── man-roxygen ├── ex-facet_trelliscope.R ├── ex-trelliscope.R ├── param-has-legend.R ├── param-split-aspect.R └── param-split-layout.R ├── man ├── Trelliscope-shiny.Rd ├── as_cognostics.Rd ├── cog.Rd ├── cog_disp_filter.Rd ├── cog_href.Rd ├── cogs.Rd ├── create_cog_template.Rd ├── facet_trelliscope.Rd ├── figures │ └── logo.png ├── img_panel.Rd ├── img_panel_local.Rd ├── input_cogs.Rd ├── input_cogs_api.Rd ├── input_radio.Rd ├── input_text.Rd ├── map2_cog.Rd ├── map2_plot.Rd ├── map_cog.Rd ├── map_plot.Rd ├── md_description.Rd ├── mpg_labels.Rd ├── panels.Rd ├── prepare_display.Rd ├── print.facet_trelliscope.Rd ├── set_labels.Rd ├── sort_spec.Rd ├── tr_charm.Rd ├── trelliscope.Rd ├── trelliscopejs-package.Rd ├── update_display_list.Rd ├── view_item.Rd ├── view_list.Rd ├── write_cognostics.Rd ├── write_config.Rd ├── write_display_obj.Rd ├── write_panel.Rd └── write_panels.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── testthat.R └── testthat │ ├── test-trelliscope.R │ └── test-zzz-lintr.R └── vignettes └── trelliscopejs.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/.lintr -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/abs-path-checking.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/abs-path-checking.R -------------------------------------------------------------------------------- /R/auto_cogs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/auto_cogs.R -------------------------------------------------------------------------------- /R/charm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/charm.R -------------------------------------------------------------------------------- /R/cog.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/cog.R -------------------------------------------------------------------------------- /R/facet_trelliscope.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/facet_trelliscope.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/htmlwidget.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/htmlwidget.R -------------------------------------------------------------------------------- /R/input_cogs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/input_cogs.R -------------------------------------------------------------------------------- /R/json_writers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/json_writers.R -------------------------------------------------------------------------------- /R/make_png.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/make_png.R -------------------------------------------------------------------------------- /R/state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/state.R -------------------------------------------------------------------------------- /R/thumbnail.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/thumbnail.R -------------------------------------------------------------------------------- /R/tidy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/tidy.R -------------------------------------------------------------------------------- /R/trelliscope.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/trelliscope.R -------------------------------------------------------------------------------- /R/trelliscopejs-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/R/trelliscopejs-package.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/mpg_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/data/mpg_labels.R -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /docs/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /docs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/trelliscopejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/articles/trelliscopejs.html -------------------------------------------------------------------------------- /docs/articles/trelliscopejs_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/articles/trelliscopejs_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/trelliscopejs_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/articles/trelliscopejs_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/trelliscopejs_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/articles/trelliscopejs_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/favicon-16x16.png -------------------------------------------------------------------------------- /docs/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/favicon-32x32.png -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Trelliscope-shiny.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/Trelliscope-shiny.html -------------------------------------------------------------------------------- /docs/reference/as_cognostics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/as_cognostics.html -------------------------------------------------------------------------------- /docs/reference/cog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/cog.html -------------------------------------------------------------------------------- /docs/reference/cog_disp_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/cog_disp_filter.html -------------------------------------------------------------------------------- /docs/reference/cog_href.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/cog_href.html -------------------------------------------------------------------------------- /docs/reference/cogs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/cogs.html -------------------------------------------------------------------------------- /docs/reference/facet_trelliscope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/facet_trelliscope.html -------------------------------------------------------------------------------- /docs/reference/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/figures/logo.png -------------------------------------------------------------------------------- /docs/reference/figures/trelliscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/figures/trelliscope.png -------------------------------------------------------------------------------- /docs/reference/img_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/img_panel.html -------------------------------------------------------------------------------- /docs/reference/img_panel_local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/img_panel_local.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/map2_cog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/map2_cog.html -------------------------------------------------------------------------------- /docs/reference/map2_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/map2_plot.html -------------------------------------------------------------------------------- /docs/reference/map_cog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/map_cog.html -------------------------------------------------------------------------------- /docs/reference/map_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/map_plot.html -------------------------------------------------------------------------------- /docs/reference/mpg_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/mpg_labels.html -------------------------------------------------------------------------------- /docs/reference/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/panel.html -------------------------------------------------------------------------------- /docs/reference/panels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/panels.html -------------------------------------------------------------------------------- /docs/reference/prepare_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/prepare_display.html -------------------------------------------------------------------------------- /docs/reference/print.facet_trelliscope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/print.facet_trelliscope.html -------------------------------------------------------------------------------- /docs/reference/set_labels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/set_labels.html -------------------------------------------------------------------------------- /docs/reference/sort_spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/sort_spec.html -------------------------------------------------------------------------------- /docs/reference/trelliscope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/trelliscope.html -------------------------------------------------------------------------------- /docs/reference/trelliscopejs-package.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/trelliscopejs-package.html -------------------------------------------------------------------------------- /docs/reference/update_display_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/update_display_list.html -------------------------------------------------------------------------------- /docs/reference/write_cognostics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/write_cognostics.html -------------------------------------------------------------------------------- /docs/reference/write_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/write_config.html -------------------------------------------------------------------------------- /docs/reference/write_display_obj.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/write_display_obj.html -------------------------------------------------------------------------------- /docs/reference/write_panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/write_panel.html -------------------------------------------------------------------------------- /docs/reference/write_panels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/docs/reference/write_panels.html -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/css/2.1c1d28a5.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/css/2.1c1d28a5.chunk.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/css/main.ef767570.chunk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/css/main.ef767570.chunk.css -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/js/2.6925164e.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/js/2.6925164e.chunk.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/js/main.c951d10a.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/js/main.c951d10a.chunk.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/js/runtime-main.d9025fd8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/js/runtime-main.d9025fd8.js -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/media/icomoon.5dd3ffcb.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/media/icomoon.5dd3ffcb.eot -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/media/icomoon.7a81c5bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/media/icomoon.7a81c5bd.woff -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/media/icomoon.8454373a.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/media/icomoon.8454373a.ttf -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/media/icomoon.bb221738.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/media/icomoon.bb221738.svg -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/media/opensans-light-webfont.2e2ab17f.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/media/opensans-light-webfont.2e2ab17f.woff -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/media/opensans-light-webfont.fc71142f.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/media/opensans-light-webfont.fc71142f.woff2 -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/media/opensans-regular-webfont.9503b8a2.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/media/opensans-regular-webfont.9503b8a2.woff -------------------------------------------------------------------------------- /inst/htmlwidgets/lib/trelliscopejs_widget/media/opensans-regular-webfont.f10027aa.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/lib/trelliscopejs_widget/media/opensans-regular-webfont.f10027aa.woff2 -------------------------------------------------------------------------------- /inst/htmlwidgets/trelliscopejs_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/trelliscopejs_widget.js -------------------------------------------------------------------------------- /inst/htmlwidgets/trelliscopejs_widget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/inst/htmlwidgets/trelliscopejs_widget.yaml -------------------------------------------------------------------------------- /man-roxygen/ex-facet_trelliscope.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man-roxygen/ex-facet_trelliscope.R -------------------------------------------------------------------------------- /man-roxygen/ex-trelliscope.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man-roxygen/ex-trelliscope.R -------------------------------------------------------------------------------- /man-roxygen/param-has-legend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man-roxygen/param-has-legend.R -------------------------------------------------------------------------------- /man-roxygen/param-split-aspect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man-roxygen/param-split-aspect.R -------------------------------------------------------------------------------- /man-roxygen/param-split-layout.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man-roxygen/param-split-layout.R -------------------------------------------------------------------------------- /man/Trelliscope-shiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/Trelliscope-shiny.Rd -------------------------------------------------------------------------------- /man/as_cognostics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/as_cognostics.Rd -------------------------------------------------------------------------------- /man/cog.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/cog.Rd -------------------------------------------------------------------------------- /man/cog_disp_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/cog_disp_filter.Rd -------------------------------------------------------------------------------- /man/cog_href.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/cog_href.Rd -------------------------------------------------------------------------------- /man/cogs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/cogs.Rd -------------------------------------------------------------------------------- /man/create_cog_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/create_cog_template.Rd -------------------------------------------------------------------------------- /man/facet_trelliscope.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/facet_trelliscope.Rd -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/img_panel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/img_panel.Rd -------------------------------------------------------------------------------- /man/img_panel_local.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/img_panel_local.Rd -------------------------------------------------------------------------------- /man/input_cogs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/input_cogs.Rd -------------------------------------------------------------------------------- /man/input_cogs_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/input_cogs_api.Rd -------------------------------------------------------------------------------- /man/input_radio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/input_radio.Rd -------------------------------------------------------------------------------- /man/input_text.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/input_text.Rd -------------------------------------------------------------------------------- /man/map2_cog.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/map2_cog.Rd -------------------------------------------------------------------------------- /man/map2_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/map2_plot.Rd -------------------------------------------------------------------------------- /man/map_cog.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/map_cog.Rd -------------------------------------------------------------------------------- /man/map_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/map_plot.Rd -------------------------------------------------------------------------------- /man/md_description.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/md_description.Rd -------------------------------------------------------------------------------- /man/mpg_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/mpg_labels.Rd -------------------------------------------------------------------------------- /man/panels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/panels.Rd -------------------------------------------------------------------------------- /man/prepare_display.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/prepare_display.Rd -------------------------------------------------------------------------------- /man/print.facet_trelliscope.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/print.facet_trelliscope.Rd -------------------------------------------------------------------------------- /man/set_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/set_labels.Rd -------------------------------------------------------------------------------- /man/sort_spec.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/sort_spec.Rd -------------------------------------------------------------------------------- /man/tr_charm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/tr_charm.Rd -------------------------------------------------------------------------------- /man/trelliscope.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/trelliscope.Rd -------------------------------------------------------------------------------- /man/trelliscopejs-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/trelliscopejs-package.Rd -------------------------------------------------------------------------------- /man/update_display_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/update_display_list.Rd -------------------------------------------------------------------------------- /man/view_item.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/view_item.Rd -------------------------------------------------------------------------------- /man/view_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/view_list.Rd -------------------------------------------------------------------------------- /man/write_cognostics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/write_cognostics.Rd -------------------------------------------------------------------------------- /man/write_config.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/write_config.Rd -------------------------------------------------------------------------------- /man/write_display_obj.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/write_display_obj.Rd -------------------------------------------------------------------------------- /man/write_panel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/write_panel.Rd -------------------------------------------------------------------------------- /man/write_panels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/man/write_panels.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-trelliscope.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/tests/testthat/test-trelliscope.R -------------------------------------------------------------------------------- /tests/testthat/test-zzz-lintr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/tests/testthat/test-zzz-lintr.R -------------------------------------------------------------------------------- /vignettes/trelliscopejs.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hafen/trelliscopejs/HEAD/vignettes/trelliscopejs.Rmd --------------------------------------------------------------------------------