├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── R ├── data.R ├── export.R ├── onLoad.R ├── pivot_addin.R ├── pivot_format.R ├── pivot_table.R ├── shiny.R ├── unpivot.R ├── utils.R └── zzz.R ├── README.md ├── _pkgdown.yml ├── data-raw └── nobel_laureates.R ├── data └── nobel_laureates.rda ├── examples ├── export.R ├── pivot_format.R ├── pivot_formatter.R ├── pivot_labels.R ├── pivot_table.R ├── shiny.R └── unpivot.R ├── inst └── assets │ ├── clipboard │ ├── LICENSE.md │ └── clipboard.min.js │ ├── css │ └── styles.css │ └── icons │ ├── clippy.svg │ ├── microsoft-excel.png │ ├── microsoft-powerpoint.png │ └── microsoft-word.png ├── man ├── export-pivot.Rd ├── figures │ └── flexpivot.png ├── nobel_laureates.Rd ├── pivot-shiny.Rd ├── pivot_addin.Rd ├── pivot_format.Rd ├── pivot_formatter.Rd ├── pivot_labels.Rd ├── pivot_table.Rd └── unpivot.Rd ├── tests ├── testthat.R └── testthat │ ├── test-export.R │ ├── test-pivot_addin.R │ ├── test-pivot_format.R │ ├── test-pivot_table.R │ └── test-shiny.R └── vignettes ├── .gitignore ├── figures ├── example-ppt.png └── example-shiny.png └── flexpivot.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/data.R -------------------------------------------------------------------------------- /R/export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/export.R -------------------------------------------------------------------------------- /R/onLoad.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/onLoad.R -------------------------------------------------------------------------------- /R/pivot_addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/pivot_addin.R -------------------------------------------------------------------------------- /R/pivot_format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/pivot_format.R -------------------------------------------------------------------------------- /R/pivot_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/pivot_table.R -------------------------------------------------------------------------------- /R/shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/shiny.R -------------------------------------------------------------------------------- /R/unpivot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/unpivot.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /data-raw/nobel_laureates.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/data-raw/nobel_laureates.R -------------------------------------------------------------------------------- /data/nobel_laureates.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/data/nobel_laureates.rda -------------------------------------------------------------------------------- /examples/export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/examples/export.R -------------------------------------------------------------------------------- /examples/pivot_format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/examples/pivot_format.R -------------------------------------------------------------------------------- /examples/pivot_formatter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/examples/pivot_formatter.R -------------------------------------------------------------------------------- /examples/pivot_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/examples/pivot_labels.R -------------------------------------------------------------------------------- /examples/pivot_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/examples/pivot_table.R -------------------------------------------------------------------------------- /examples/shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/examples/shiny.R -------------------------------------------------------------------------------- /examples/unpivot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/examples/unpivot.R -------------------------------------------------------------------------------- /inst/assets/clipboard/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/inst/assets/clipboard/LICENSE.md -------------------------------------------------------------------------------- /inst/assets/clipboard/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/inst/assets/clipboard/clipboard.min.js -------------------------------------------------------------------------------- /inst/assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/inst/assets/css/styles.css -------------------------------------------------------------------------------- /inst/assets/icons/clippy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/inst/assets/icons/clippy.svg -------------------------------------------------------------------------------- /inst/assets/icons/microsoft-excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/inst/assets/icons/microsoft-excel.png -------------------------------------------------------------------------------- /inst/assets/icons/microsoft-powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/inst/assets/icons/microsoft-powerpoint.png -------------------------------------------------------------------------------- /inst/assets/icons/microsoft-word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/inst/assets/icons/microsoft-word.png -------------------------------------------------------------------------------- /man/export-pivot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/export-pivot.Rd -------------------------------------------------------------------------------- /man/figures/flexpivot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/figures/flexpivot.png -------------------------------------------------------------------------------- /man/nobel_laureates.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/nobel_laureates.Rd -------------------------------------------------------------------------------- /man/pivot-shiny.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/pivot-shiny.Rd -------------------------------------------------------------------------------- /man/pivot_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/pivot_addin.Rd -------------------------------------------------------------------------------- /man/pivot_format.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/pivot_format.Rd -------------------------------------------------------------------------------- /man/pivot_formatter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/pivot_formatter.Rd -------------------------------------------------------------------------------- /man/pivot_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/pivot_labels.Rd -------------------------------------------------------------------------------- /man/pivot_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/pivot_table.Rd -------------------------------------------------------------------------------- /man/unpivot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/man/unpivot.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-export.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/tests/testthat/test-export.R -------------------------------------------------------------------------------- /tests/testthat/test-pivot_addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/tests/testthat/test-pivot_addin.R -------------------------------------------------------------------------------- /tests/testthat/test-pivot_format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/tests/testthat/test-pivot_format.R -------------------------------------------------------------------------------- /tests/testthat/test-pivot_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/tests/testthat/test-pivot_table.R -------------------------------------------------------------------------------- /tests/testthat/test-shiny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/tests/testthat/test-shiny.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/figures/example-ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/vignettes/figures/example-ppt.png -------------------------------------------------------------------------------- /vignettes/figures/example-shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/vignettes/figures/example-shiny.png -------------------------------------------------------------------------------- /vignettes/flexpivot.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreamRs/flexpivot/HEAD/vignettes/flexpivot.Rmd --------------------------------------------------------------------------------