├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── demo.R ├── format.R ├── package.R ├── table.R └── utils-pipe.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── man ├── figures │ └── README- │ │ ├── demo.svg │ │ └── table.svg ├── formatting.Rd ├── pipe.Rd ├── tabulate_demo.Rd └── tabulate_table.Rd ├── src ├── .gitignore ├── RcppExports.cpp ├── cell.cpp ├── column.cpp ├── format.cpp ├── row.cpp ├── table.cpp ├── tabulate.h ├── tabulate_types.cpp └── tabulate_types.h ├── tabulate.Rproj ├── tests ├── testthat.R └── testthat │ ├── _snaps │ └── table.md │ └── test-table.R └── vignettes ├── .gitignore └── articles ├── class-diagram.Rmd ├── colors.Rmd ├── employees.Rmd ├── font-style.Rmd ├── mario.Rmd ├── movies.Rmd └── unicode.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2022 2 | COPYRIGHT HOLDER: tabulate authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/demo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/R/demo.R -------------------------------------------------------------------------------- /R/format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/R/format.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- 1 | #' @useDynLib tabulate, .registration = TRUE 2 | #' @importFrom Rcpp sourceCpp 3 | NULL 4 | -------------------------------------------------------------------------------- /R/table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/R/table.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/figures/README-/demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/man/figures/README-/demo.svg -------------------------------------------------------------------------------- /man/figures/README-/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/man/figures/README-/table.svg -------------------------------------------------------------------------------- /man/formatting.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/man/formatting.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/tabulate_demo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/man/tabulate_demo.Rd -------------------------------------------------------------------------------- /man/tabulate_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/man/tabulate_table.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/cell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/cell.cpp -------------------------------------------------------------------------------- /src/column.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/column.cpp -------------------------------------------------------------------------------- /src/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/format.cpp -------------------------------------------------------------------------------- /src/row.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/row.cpp -------------------------------------------------------------------------------- /src/table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/table.cpp -------------------------------------------------------------------------------- /src/tabulate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/tabulate.h -------------------------------------------------------------------------------- /src/tabulate_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/tabulate_types.cpp -------------------------------------------------------------------------------- /src/tabulate_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/src/tabulate_types.h -------------------------------------------------------------------------------- /tabulate.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/tabulate.Rproj -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/tests/testthat/_snaps/table.md -------------------------------------------------------------------------------- /tests/testthat/test-table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/tests/testthat/test-table.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/class-diagram.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/vignettes/articles/class-diagram.Rmd -------------------------------------------------------------------------------- /vignettes/articles/colors.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/vignettes/articles/colors.Rmd -------------------------------------------------------------------------------- /vignettes/articles/employees.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/vignettes/articles/employees.Rmd -------------------------------------------------------------------------------- /vignettes/articles/font-style.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/vignettes/articles/font-style.Rmd -------------------------------------------------------------------------------- /vignettes/articles/mario.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/vignettes/articles/mario.Rmd -------------------------------------------------------------------------------- /vignettes/articles/movies.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/vignettes/articles/movies.Rmd -------------------------------------------------------------------------------- /vignettes/articles/unicode.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlverse/tabulate/HEAD/vignettes/articles/unicode.Rmd --------------------------------------------------------------------------------