├── .Rbuildignore ├── .Rinstignore ├── .Rprofile ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── bin_data.R ├── bin_hcc_data.R ├── cellplot.R ├── columnTable.R ├── coorCatCol.R ├── coorNumCol.R ├── datetime2fac.R ├── getBinSizes.R ├── itableplot.R ├── markLabels.R ├── num2fac.R ├── pkg.R ├── plotCatCol.R ├── plotNumCol.R ├── plot_tabplot.r ├── print_tabplot.R ├── save_loadPrepare.R ├── scaleNumCol.R ├── splitTab.R ├── subset_data.R ├── summary_tabplot.R ├── sysdata.rda ├── tableChange.R ├── tablePalettes.R ├── tablePrepare.R ├── tableSave.R ├── tableViewport.R ├── tableplot.R ├── tableplot_checkBins.R ├── tableplot_checkChangePalType.R ├── tableplot_checkCols.R ├── tableplot_checkDecreasing.R ├── tableplot_checkFromTo.R ├── tableplot_checkLimitsX.R ├── tableplot_checkNcols.R ├── tableplot_checkNumPals.R ├── tableplot_checkPals.R ├── tableplot_checkRevLeg.R ├── tableplot_checkScales.R ├── tableplot_processCols.R ├── tableplots_diff.R └── tabplot_object.R ├── README.md ├── appveyor.yml ├── cran-comments.md ├── demo ├── 00Index ├── ffdf.R └── tableplot.R ├── examples ├── datetime2fac.R ├── num2fac.R ├── pkg.R ├── plot_tabplot.R ├── tableChange.R ├── tablePrepare.R ├── tableplot.R └── tableplots_diff.R ├── man ├── bin_data.Rd ├── bin_hcc_data.Rd ├── close.prepared.Rd ├── datetime2fac.Rd ├── itableplot.Rd ├── loadPrepare.Rd ├── num2fac.Rd ├── plot.tabplot.Rd ├── print.tabplot.Rd ├── savePrepare.Rd ├── summary.tabplot.Rd ├── tableChange.Rd ├── tablePalettes.Rd ├── tablePrepare.Rd ├── tableSave.Rd ├── tableplot.Rd ├── tableplot_comparison.Rd ├── tabplot-object.Rd ├── tabplot-package.Rd └── tabplot_compare-object.Rd ├── sandbox ├── data_table.R └── ff_memory_bug.R ├── tableplot.Rproj ├── test ├── bigffdiamondtest.R ├── develop_test.R ├── rev_legend_items.R ├── save_prepare.R ├── test_diff.R ├── test_numMode.R ├── test_numpals.R └── test_sortCol.R └── vignettes ├── tabplot-timings.Rmd └── tabplot-vignette.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rinstignore: -------------------------------------------------------------------------------- 1 | Makefile -------------------------------------------------------------------------------- /.Rprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/.Rprofile -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/NEWS -------------------------------------------------------------------------------- /R/bin_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/bin_data.R -------------------------------------------------------------------------------- /R/bin_hcc_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/bin_hcc_data.R -------------------------------------------------------------------------------- /R/cellplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/cellplot.R -------------------------------------------------------------------------------- /R/columnTable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/columnTable.R -------------------------------------------------------------------------------- /R/coorCatCol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/coorCatCol.R -------------------------------------------------------------------------------- /R/coorNumCol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/coorNumCol.R -------------------------------------------------------------------------------- /R/datetime2fac.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/datetime2fac.R -------------------------------------------------------------------------------- /R/getBinSizes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/getBinSizes.R -------------------------------------------------------------------------------- /R/itableplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/itableplot.R -------------------------------------------------------------------------------- /R/markLabels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/markLabels.R -------------------------------------------------------------------------------- /R/num2fac.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/num2fac.R -------------------------------------------------------------------------------- /R/pkg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/pkg.R -------------------------------------------------------------------------------- /R/plotCatCol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/plotCatCol.R -------------------------------------------------------------------------------- /R/plotNumCol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/plotNumCol.R -------------------------------------------------------------------------------- /R/plot_tabplot.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/plot_tabplot.r -------------------------------------------------------------------------------- /R/print_tabplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/print_tabplot.R -------------------------------------------------------------------------------- /R/save_loadPrepare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/save_loadPrepare.R -------------------------------------------------------------------------------- /R/scaleNumCol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/scaleNumCol.R -------------------------------------------------------------------------------- /R/splitTab.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/splitTab.R -------------------------------------------------------------------------------- /R/subset_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/subset_data.R -------------------------------------------------------------------------------- /R/summary_tabplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/summary_tabplot.R -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/tableChange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableChange.R -------------------------------------------------------------------------------- /R/tablePalettes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tablePalettes.R -------------------------------------------------------------------------------- /R/tablePrepare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tablePrepare.R -------------------------------------------------------------------------------- /R/tableSave.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableSave.R -------------------------------------------------------------------------------- /R/tableViewport.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableViewport.R -------------------------------------------------------------------------------- /R/tableplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot.R -------------------------------------------------------------------------------- /R/tableplot_checkBins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkBins.R -------------------------------------------------------------------------------- /R/tableplot_checkChangePalType.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkChangePalType.R -------------------------------------------------------------------------------- /R/tableplot_checkCols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkCols.R -------------------------------------------------------------------------------- /R/tableplot_checkDecreasing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkDecreasing.R -------------------------------------------------------------------------------- /R/tableplot_checkFromTo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkFromTo.R -------------------------------------------------------------------------------- /R/tableplot_checkLimitsX.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkLimitsX.R -------------------------------------------------------------------------------- /R/tableplot_checkNcols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkNcols.R -------------------------------------------------------------------------------- /R/tableplot_checkNumPals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkNumPals.R -------------------------------------------------------------------------------- /R/tableplot_checkPals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkPals.R -------------------------------------------------------------------------------- /R/tableplot_checkRevLeg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkRevLeg.R -------------------------------------------------------------------------------- /R/tableplot_checkScales.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_checkScales.R -------------------------------------------------------------------------------- /R/tableplot_processCols.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplot_processCols.R -------------------------------------------------------------------------------- /R/tableplots_diff.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tableplots_diff.R -------------------------------------------------------------------------------- /R/tabplot_object.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/R/tabplot_object.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/cran-comments.md -------------------------------------------------------------------------------- /demo/00Index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/demo/00Index -------------------------------------------------------------------------------- /demo/ffdf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/demo/ffdf.R -------------------------------------------------------------------------------- /demo/tableplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/demo/tableplot.R -------------------------------------------------------------------------------- /examples/datetime2fac.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/examples/datetime2fac.R -------------------------------------------------------------------------------- /examples/num2fac.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/examples/num2fac.R -------------------------------------------------------------------------------- /examples/pkg.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/examples/pkg.R -------------------------------------------------------------------------------- /examples/plot_tabplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/examples/plot_tabplot.R -------------------------------------------------------------------------------- /examples/tableChange.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/examples/tableChange.R -------------------------------------------------------------------------------- /examples/tablePrepare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/examples/tablePrepare.R -------------------------------------------------------------------------------- /examples/tableplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/examples/tableplot.R -------------------------------------------------------------------------------- /examples/tableplots_diff.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/examples/tableplots_diff.R -------------------------------------------------------------------------------- /man/bin_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/bin_data.Rd -------------------------------------------------------------------------------- /man/bin_hcc_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/bin_hcc_data.Rd -------------------------------------------------------------------------------- /man/close.prepared.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/close.prepared.Rd -------------------------------------------------------------------------------- /man/datetime2fac.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/datetime2fac.Rd -------------------------------------------------------------------------------- /man/itableplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/itableplot.Rd -------------------------------------------------------------------------------- /man/loadPrepare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/loadPrepare.Rd -------------------------------------------------------------------------------- /man/num2fac.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/num2fac.Rd -------------------------------------------------------------------------------- /man/plot.tabplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/plot.tabplot.Rd -------------------------------------------------------------------------------- /man/print.tabplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/print.tabplot.Rd -------------------------------------------------------------------------------- /man/savePrepare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/savePrepare.Rd -------------------------------------------------------------------------------- /man/summary.tabplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/summary.tabplot.Rd -------------------------------------------------------------------------------- /man/tableChange.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/tableChange.Rd -------------------------------------------------------------------------------- /man/tablePalettes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/tablePalettes.Rd -------------------------------------------------------------------------------- /man/tablePrepare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/tablePrepare.Rd -------------------------------------------------------------------------------- /man/tableSave.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/tableSave.Rd -------------------------------------------------------------------------------- /man/tableplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/tableplot.Rd -------------------------------------------------------------------------------- /man/tableplot_comparison.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/tableplot_comparison.Rd -------------------------------------------------------------------------------- /man/tabplot-object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/tabplot-object.Rd -------------------------------------------------------------------------------- /man/tabplot-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/tabplot-package.Rd -------------------------------------------------------------------------------- /man/tabplot_compare-object.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/man/tabplot_compare-object.Rd -------------------------------------------------------------------------------- /sandbox/data_table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/sandbox/data_table.R -------------------------------------------------------------------------------- /sandbox/ff_memory_bug.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/sandbox/ff_memory_bug.R -------------------------------------------------------------------------------- /tableplot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/tableplot.Rproj -------------------------------------------------------------------------------- /test/bigffdiamondtest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/test/bigffdiamondtest.R -------------------------------------------------------------------------------- /test/develop_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/test/develop_test.R -------------------------------------------------------------------------------- /test/rev_legend_items.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/test/rev_legend_items.R -------------------------------------------------------------------------------- /test/save_prepare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/test/save_prepare.R -------------------------------------------------------------------------------- /test/test_diff.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/test/test_diff.R -------------------------------------------------------------------------------- /test/test_numMode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/test/test_numMode.R -------------------------------------------------------------------------------- /test/test_numpals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/test/test_numpals.R -------------------------------------------------------------------------------- /test/test_sortCol.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/test/test_sortCol.R -------------------------------------------------------------------------------- /vignettes/tabplot-timings.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/vignettes/tabplot-timings.Rmd -------------------------------------------------------------------------------- /vignettes/tabplot-vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtennekes/tabplot/HEAD/vignettes/tabplot-vignette.Rmd --------------------------------------------------------------------------------