├── .Rbuildignore ├── .github ├── .gitignore ├── FUNDING.yml └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── data.R └── tidyheatmap.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── data └── data_exprs.rda ├── docs ├── 404.html ├── LICENSE-text.html ├── LICENSE.html ├── articles │ ├── index.html │ ├── tidyheatmap.html │ └── tidyheatmap_files │ │ └── figure-html │ │ ├── unnamed-chunk-10-1.png │ │ ├── unnamed-chunk-11-1.png │ │ ├── unnamed-chunk-12-1.png │ │ ├── unnamed-chunk-13-1.png │ │ ├── unnamed-chunk-14-1.png │ │ ├── unnamed-chunk-15-1.png │ │ ├── unnamed-chunk-17-1.png │ │ ├── unnamed-chunk-5-1.png │ │ ├── unnamed-chunk-6-1.png │ │ ├── unnamed-chunk-7-1.png │ │ ├── unnamed-chunk-8-1.png │ │ └── unnamed-chunk-9-1.png ├── authors.html ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── Rplot002.png │ ├── Rplot003.png │ ├── Rplot004.png │ ├── Rplot005.png │ ├── data_exprs.html │ ├── figures │ │ ├── README-unnamed-chunk-3-1.png │ │ └── README-unnamed-chunk-3-2.png │ ├── index.html │ ├── tidy_heatmap-1.png │ ├── tidy_heatmap-2.png │ ├── tidy_heatmap-3.png │ ├── tidy_heatmap-4.png │ ├── tidy_heatmap-5.png │ └── tidy_heatmap.html └── sitemap.xml ├── man ├── data_exprs.Rd ├── figures │ ├── README-unnamed-chunk-2-1.png │ ├── README-unnamed-chunk-3-1.png │ ├── README-unnamed-chunk-3-2.png │ └── logo.svg └── tidyheatmap.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 │ ├── Rplots.pdf │ └── test-tidyheatmap.R ├── tidyheatmaps.Rproj └── vignettes ├── .gitignore └── tidyheatmaps.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: Jan Broder Engler 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/R/data.R -------------------------------------------------------------------------------- /R/tidyheatmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/R/tidyheatmap.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/data_exprs.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/data/data_exprs.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/LICENSE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/LICENSE.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/tidyheatmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap.html -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/articles/tidyheatmap_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/Rplot002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/Rplot002.png -------------------------------------------------------------------------------- /docs/reference/Rplot003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/Rplot003.png -------------------------------------------------------------------------------- /docs/reference/Rplot004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/Rplot004.png -------------------------------------------------------------------------------- /docs/reference/Rplot005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/Rplot005.png -------------------------------------------------------------------------------- /docs/reference/data_exprs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/data_exprs.html -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/reference/figures/README-unnamed-chunk-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/figures/README-unnamed-chunk-3-2.png -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/tidy_heatmap-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/tidy_heatmap-1.png -------------------------------------------------------------------------------- /docs/reference/tidy_heatmap-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/tidy_heatmap-2.png -------------------------------------------------------------------------------- /docs/reference/tidy_heatmap-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/tidy_heatmap-3.png -------------------------------------------------------------------------------- /docs/reference/tidy_heatmap-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/tidy_heatmap-4.png -------------------------------------------------------------------------------- /docs/reference/tidy_heatmap-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/tidy_heatmap-5.png -------------------------------------------------------------------------------- /docs/reference/tidy_heatmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/reference/tidy_heatmap.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /man/data_exprs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/man/data_exprs.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/man/figures/README-unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/man/figures/README-unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/man/figures/README-unnamed-chunk-3-2.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/tidyheatmap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/man/tidyheatmap.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/Rplots.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/tests/testthat/Rplots.pdf -------------------------------------------------------------------------------- /tests/testthat/test-tidyheatmap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/tests/testthat/test-tidyheatmap.R -------------------------------------------------------------------------------- /tidyheatmaps.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/tidyheatmaps.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/tidyheatmaps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbengler/tidyheatmaps/HEAD/vignettes/tidyheatmaps.Rmd --------------------------------------------------------------------------------