├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── misc.R ├── output.R ├── profiler.R ├── shine.R ├── summarize.R ├── time.R ├── treemanip.R └── treeprof-package.r ├── README.md ├── TODO.md ├── inst ├── extdata │ ├── doubletry.treeprof.RDS │ ├── parsewithcom.treeprof.RDS │ ├── parsewithcom.zip │ ├── recursive.RDS │ └── type_alike.treeprof.RDS └── shinyapp │ ├── server.R │ └── ui.R ├── man ├── as.character.treeprof.Rd ├── as.data.table.treeprof.Rd ├── as.dt.Rd ├── by_fun.Rd ├── chop_stack_recurse.Rd ├── clean_message.Rd ├── collapse_passthru_fun.Rd ├── collapse_passthru_funs.Rd ├── get_descendant_nodes.Rd ├── get_par_nodes.Rd ├── melt_prof.Rd ├── normalize.Rd ├── parse_lines.Rd ├── passthru_defined.Rd ├── passthru_fun.Rd ├── run_rprof.Rd ├── shinyfy.Rd ├── sort.treeprof.Rd ├── summarize.Rd ├── time_format.Rd ├── time_per.Rd ├── treeprof.Rd └── trim_branch.Rd └── tests ├── render.tests.R ├── run.testor.R ├── test.R ├── test2.R ├── test3.R └── unitizer ├── treeprof.R └── treeprof.unitizer └── data.rds /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/NEWS -------------------------------------------------------------------------------- /R/misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/R/misc.R -------------------------------------------------------------------------------- /R/output.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/R/output.R -------------------------------------------------------------------------------- /R/profiler.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/R/profiler.R -------------------------------------------------------------------------------- /R/shine.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/R/shine.R -------------------------------------------------------------------------------- /R/summarize.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/R/summarize.R -------------------------------------------------------------------------------- /R/time.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/R/time.R -------------------------------------------------------------------------------- /R/treemanip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/R/treemanip.R -------------------------------------------------------------------------------- /R/treeprof-package.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/R/treeprof-package.r -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/TODO.md -------------------------------------------------------------------------------- /inst/extdata/doubletry.treeprof.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/inst/extdata/doubletry.treeprof.RDS -------------------------------------------------------------------------------- /inst/extdata/parsewithcom.treeprof.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/inst/extdata/parsewithcom.treeprof.RDS -------------------------------------------------------------------------------- /inst/extdata/parsewithcom.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/inst/extdata/parsewithcom.zip -------------------------------------------------------------------------------- /inst/extdata/recursive.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/inst/extdata/recursive.RDS -------------------------------------------------------------------------------- /inst/extdata/type_alike.treeprof.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/inst/extdata/type_alike.treeprof.RDS -------------------------------------------------------------------------------- /inst/shinyapp/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/inst/shinyapp/server.R -------------------------------------------------------------------------------- /inst/shinyapp/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/inst/shinyapp/ui.R -------------------------------------------------------------------------------- /man/as.character.treeprof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/as.character.treeprof.Rd -------------------------------------------------------------------------------- /man/as.data.table.treeprof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/as.data.table.treeprof.Rd -------------------------------------------------------------------------------- /man/as.dt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/as.dt.Rd -------------------------------------------------------------------------------- /man/by_fun.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/by_fun.Rd -------------------------------------------------------------------------------- /man/chop_stack_recurse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/chop_stack_recurse.Rd -------------------------------------------------------------------------------- /man/clean_message.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/clean_message.Rd -------------------------------------------------------------------------------- /man/collapse_passthru_fun.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/collapse_passthru_fun.Rd -------------------------------------------------------------------------------- /man/collapse_passthru_funs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/collapse_passthru_funs.Rd -------------------------------------------------------------------------------- /man/get_descendant_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/get_descendant_nodes.Rd -------------------------------------------------------------------------------- /man/get_par_nodes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/get_par_nodes.Rd -------------------------------------------------------------------------------- /man/melt_prof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/melt_prof.Rd -------------------------------------------------------------------------------- /man/normalize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/normalize.Rd -------------------------------------------------------------------------------- /man/parse_lines.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/parse_lines.Rd -------------------------------------------------------------------------------- /man/passthru_defined.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/passthru_defined.Rd -------------------------------------------------------------------------------- /man/passthru_fun.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/passthru_fun.Rd -------------------------------------------------------------------------------- /man/run_rprof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/run_rprof.Rd -------------------------------------------------------------------------------- /man/shinyfy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/shinyfy.Rd -------------------------------------------------------------------------------- /man/sort.treeprof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/sort.treeprof.Rd -------------------------------------------------------------------------------- /man/summarize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/summarize.Rd -------------------------------------------------------------------------------- /man/time_format.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/time_format.Rd -------------------------------------------------------------------------------- /man/time_per.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/time_per.Rd -------------------------------------------------------------------------------- /man/treeprof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/treeprof.Rd -------------------------------------------------------------------------------- /man/trim_branch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/man/trim_branch.Rd -------------------------------------------------------------------------------- /tests/render.tests.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/tests/render.tests.R -------------------------------------------------------------------------------- /tests/run.testor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/tests/run.testor.R -------------------------------------------------------------------------------- /tests/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/tests/test.R -------------------------------------------------------------------------------- /tests/test2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/tests/test2.R -------------------------------------------------------------------------------- /tests/test3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/tests/test3.R -------------------------------------------------------------------------------- /tests/unitizer/treeprof.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/tests/unitizer/treeprof.R -------------------------------------------------------------------------------- /tests/unitizer/treeprof.unitizer/data.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brodieG/treeprof/HEAD/tests/unitizer/treeprof.unitizer/data.rds --------------------------------------------------------------------------------