├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── cell-hmisc.R ├── cell-lancet.R ├── cell-nejm.R ├── compile-cell.R ├── compile-clmm2.R ├── compile-operators.R ├── compile-post.R ├── compile-rms.R ├── compile-typing.R ├── compile.R ├── helper-format.R ├── hmisc-biVar.R ├── hmisc-cut2.R ├── hmisc-impute.R ├── hmisc-lm.fit.qr.bare.R ├── iify.R ├── parser.R ├── render-csv.R ├── render-html5.R ├── render-index.R ├── render-latex-map.R ├── render-latex.R ├── render-rmd.R ├── render-rtf.R ├── render-summary.R ├── smd.R ├── transform-hmisc.R ├── transform-lancet.R ├── transform-nejm.R ├── transform-proc-tab.R └── transform-smd.R ├── README.md ├── data └── pbc.rda ├── inst └── extdata │ ├── css │ ├── hmisc.css │ ├── lancet-stripped.css │ ├── lancet.css │ └── nejm.css │ ├── tex │ └── tangram.template │ └── word │ └── tangram_macros.dotm ├── man ├── ASTBranch.Rd ├── ASTFunction.Rd ├── ASTMultiply.Rd ├── ASTNode.Rd ├── ASTPlus.Rd ├── ASTTableFormula.Rd ├── ASTVariable.Rd ├── Parser.Rd ├── Token.Rd ├── add_footnote.Rd ├── add_indent.Rd ├── args_flatten.Rd ├── as.categorical.Rd ├── cbind.tangram.Rd ├── cell.Rd ├── cell_header.Rd ├── cell_label.Rd ├── cell_n.Rd ├── cell_subheader.Rd ├── cell_transform.Rd ├── csv.Rd ├── custom_css.Rd ├── del_col.Rd ├── del_row.Rd ├── derive_label.Rd ├── drop_statistics.Rd ├── format_guess.Rd ├── hmisc.Rd ├── hmisc_cell.Rd ├── hmisc_data_type.Rd ├── hmisc_intercept_cleanup.Rd ├── html5.Rd ├── html5.cell.Rd ├── html5.cell_header.Rd ├── html5.cell_label.Rd ├── html5.cell_n.Rd ├── html5.cell_subheader.Rd ├── html5.character.Rd ├── html5.default.Rd ├── html5.logical.Rd ├── html5.tangram.Rd ├── index.Rd ├── index.cell_label.Rd ├── index.default.Rd ├── index.list.Rd ├── index.tangram.Rd ├── insert_column.Rd ├── insert_row.Rd ├── is.binomial.Rd ├── is.categorical.Rd ├── key.Rd ├── lancet.Rd ├── lancet_cell.Rd ├── lancet_fraction.Rd ├── lancet_mean_sd.Rd ├── latex.Rd ├── latex_template.Rd ├── latexify.Rd ├── nejm.Rd ├── nejm_cell.Rd ├── nejm_fraction.Rd ├── nejm_iqr.Rd ├── nejm_range.Rd ├── pbc.Rd ├── pipe.tangram.Rd ├── plus-.tangram.Rd ├── print.Rd ├── proc_tab.Rd ├── rbind.tangram.Rd ├── render_f.Rd ├── render_route_tangram.Rd ├── replace_cell.Rd ├── rmd.Rd ├── rowscols.Rd ├── rtf.Rd ├── rtf.default.Rd ├── rtf.tangram.Rd ├── select_col.Rd ├── select_row.Rd ├── smd.Rd ├── smd_cell.Rd ├── smd_compare.Rd ├── smd_contingency.Rd ├── smd_dist.Rd ├── smd_fraction.Rd ├── smd_meansd.Rd ├── standard_difference.Rd ├── summarize_nejm_horz.Rd ├── summarize_nejm_vert.Rd ├── summary.Rd ├── table_builder.Rd ├── table_flatten.Rd └── tangram.Rd └── tests ├── testthat.R └── testthat ├── testExclude.R ├── testHtmlify.R ├── testInterceptHmisc.R ├── testLatexify.R ├── testParser.R ├── testTableBuilder.R └── testTableGen.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/cell-hmisc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/cell-hmisc.R -------------------------------------------------------------------------------- /R/cell-lancet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/cell-lancet.R -------------------------------------------------------------------------------- /R/cell-nejm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/cell-nejm.R -------------------------------------------------------------------------------- /R/compile-cell.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/compile-cell.R -------------------------------------------------------------------------------- /R/compile-clmm2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/compile-clmm2.R -------------------------------------------------------------------------------- /R/compile-operators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/compile-operators.R -------------------------------------------------------------------------------- /R/compile-post.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/compile-post.R -------------------------------------------------------------------------------- /R/compile-rms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/compile-rms.R -------------------------------------------------------------------------------- /R/compile-typing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/compile-typing.R -------------------------------------------------------------------------------- /R/compile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/compile.R -------------------------------------------------------------------------------- /R/helper-format.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/helper-format.R -------------------------------------------------------------------------------- /R/hmisc-biVar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/hmisc-biVar.R -------------------------------------------------------------------------------- /R/hmisc-cut2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/hmisc-cut2.R -------------------------------------------------------------------------------- /R/hmisc-impute.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/hmisc-impute.R -------------------------------------------------------------------------------- /R/hmisc-lm.fit.qr.bare.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/hmisc-lm.fit.qr.bare.R -------------------------------------------------------------------------------- /R/iify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/iify.R -------------------------------------------------------------------------------- /R/parser.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/parser.R -------------------------------------------------------------------------------- /R/render-csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/render-csv.R -------------------------------------------------------------------------------- /R/render-html5.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/render-html5.R -------------------------------------------------------------------------------- /R/render-index.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/render-index.R -------------------------------------------------------------------------------- /R/render-latex-map.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/render-latex-map.R -------------------------------------------------------------------------------- /R/render-latex.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/render-latex.R -------------------------------------------------------------------------------- /R/render-rmd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/render-rmd.R -------------------------------------------------------------------------------- /R/render-rtf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/render-rtf.R -------------------------------------------------------------------------------- /R/render-summary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/render-summary.R -------------------------------------------------------------------------------- /R/smd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/smd.R -------------------------------------------------------------------------------- /R/transform-hmisc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/transform-hmisc.R -------------------------------------------------------------------------------- /R/transform-lancet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/transform-lancet.R -------------------------------------------------------------------------------- /R/transform-nejm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/transform-nejm.R -------------------------------------------------------------------------------- /R/transform-proc-tab.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/transform-proc-tab.R -------------------------------------------------------------------------------- /R/transform-smd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/R/transform-smd.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/README.md -------------------------------------------------------------------------------- /data/pbc.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/data/pbc.rda -------------------------------------------------------------------------------- /inst/extdata/css/hmisc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/inst/extdata/css/hmisc.css -------------------------------------------------------------------------------- /inst/extdata/css/lancet-stripped.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/inst/extdata/css/lancet-stripped.css -------------------------------------------------------------------------------- /inst/extdata/css/lancet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/inst/extdata/css/lancet.css -------------------------------------------------------------------------------- /inst/extdata/css/nejm.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/inst/extdata/css/nejm.css -------------------------------------------------------------------------------- /inst/extdata/tex/tangram.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/inst/extdata/tex/tangram.template -------------------------------------------------------------------------------- /inst/extdata/word/tangram_macros.dotm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/inst/extdata/word/tangram_macros.dotm -------------------------------------------------------------------------------- /man/ASTBranch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/ASTBranch.Rd -------------------------------------------------------------------------------- /man/ASTFunction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/ASTFunction.Rd -------------------------------------------------------------------------------- /man/ASTMultiply.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/ASTMultiply.Rd -------------------------------------------------------------------------------- /man/ASTNode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/ASTNode.Rd -------------------------------------------------------------------------------- /man/ASTPlus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/ASTPlus.Rd -------------------------------------------------------------------------------- /man/ASTTableFormula.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/ASTTableFormula.Rd -------------------------------------------------------------------------------- /man/ASTVariable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/ASTVariable.Rd -------------------------------------------------------------------------------- /man/Parser.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/Parser.Rd -------------------------------------------------------------------------------- /man/Token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/Token.Rd -------------------------------------------------------------------------------- /man/add_footnote.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/add_footnote.Rd -------------------------------------------------------------------------------- /man/add_indent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/add_indent.Rd -------------------------------------------------------------------------------- /man/args_flatten.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/args_flatten.Rd -------------------------------------------------------------------------------- /man/as.categorical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/as.categorical.Rd -------------------------------------------------------------------------------- /man/cbind.tangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/cbind.tangram.Rd -------------------------------------------------------------------------------- /man/cell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/cell.Rd -------------------------------------------------------------------------------- /man/cell_header.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/cell_header.Rd -------------------------------------------------------------------------------- /man/cell_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/cell_label.Rd -------------------------------------------------------------------------------- /man/cell_n.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/cell_n.Rd -------------------------------------------------------------------------------- /man/cell_subheader.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/cell_subheader.Rd -------------------------------------------------------------------------------- /man/cell_transform.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/cell_transform.Rd -------------------------------------------------------------------------------- /man/csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/csv.Rd -------------------------------------------------------------------------------- /man/custom_css.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/custom_css.Rd -------------------------------------------------------------------------------- /man/del_col.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/del_col.Rd -------------------------------------------------------------------------------- /man/del_row.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/del_row.Rd -------------------------------------------------------------------------------- /man/derive_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/derive_label.Rd -------------------------------------------------------------------------------- /man/drop_statistics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/drop_statistics.Rd -------------------------------------------------------------------------------- /man/format_guess.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/format_guess.Rd -------------------------------------------------------------------------------- /man/hmisc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/hmisc.Rd -------------------------------------------------------------------------------- /man/hmisc_cell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/hmisc_cell.Rd -------------------------------------------------------------------------------- /man/hmisc_data_type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/hmisc_data_type.Rd -------------------------------------------------------------------------------- /man/hmisc_intercept_cleanup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/hmisc_intercept_cleanup.Rd -------------------------------------------------------------------------------- /man/html5.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.Rd -------------------------------------------------------------------------------- /man/html5.cell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.cell.Rd -------------------------------------------------------------------------------- /man/html5.cell_header.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.cell_header.Rd -------------------------------------------------------------------------------- /man/html5.cell_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.cell_label.Rd -------------------------------------------------------------------------------- /man/html5.cell_n.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.cell_n.Rd -------------------------------------------------------------------------------- /man/html5.cell_subheader.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.cell_subheader.Rd -------------------------------------------------------------------------------- /man/html5.character.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.character.Rd -------------------------------------------------------------------------------- /man/html5.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.default.Rd -------------------------------------------------------------------------------- /man/html5.logical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.logical.Rd -------------------------------------------------------------------------------- /man/html5.tangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/html5.tangram.Rd -------------------------------------------------------------------------------- /man/index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/index.Rd -------------------------------------------------------------------------------- /man/index.cell_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/index.cell_label.Rd -------------------------------------------------------------------------------- /man/index.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/index.default.Rd -------------------------------------------------------------------------------- /man/index.list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/index.list.Rd -------------------------------------------------------------------------------- /man/index.tangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/index.tangram.Rd -------------------------------------------------------------------------------- /man/insert_column.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/insert_column.Rd -------------------------------------------------------------------------------- /man/insert_row.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/insert_row.Rd -------------------------------------------------------------------------------- /man/is.binomial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/is.binomial.Rd -------------------------------------------------------------------------------- /man/is.categorical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/is.categorical.Rd -------------------------------------------------------------------------------- /man/key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/key.Rd -------------------------------------------------------------------------------- /man/lancet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/lancet.Rd -------------------------------------------------------------------------------- /man/lancet_cell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/lancet_cell.Rd -------------------------------------------------------------------------------- /man/lancet_fraction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/lancet_fraction.Rd -------------------------------------------------------------------------------- /man/lancet_mean_sd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/lancet_mean_sd.Rd -------------------------------------------------------------------------------- /man/latex.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/latex.Rd -------------------------------------------------------------------------------- /man/latex_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/latex_template.Rd -------------------------------------------------------------------------------- /man/latexify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/latexify.Rd -------------------------------------------------------------------------------- /man/nejm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/nejm.Rd -------------------------------------------------------------------------------- /man/nejm_cell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/nejm_cell.Rd -------------------------------------------------------------------------------- /man/nejm_fraction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/nejm_fraction.Rd -------------------------------------------------------------------------------- /man/nejm_iqr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/nejm_iqr.Rd -------------------------------------------------------------------------------- /man/nejm_range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/nejm_range.Rd -------------------------------------------------------------------------------- /man/pbc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/pbc.Rd -------------------------------------------------------------------------------- /man/pipe.tangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/pipe.tangram.Rd -------------------------------------------------------------------------------- /man/plus-.tangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/plus-.tangram.Rd -------------------------------------------------------------------------------- /man/print.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/print.Rd -------------------------------------------------------------------------------- /man/proc_tab.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/proc_tab.Rd -------------------------------------------------------------------------------- /man/rbind.tangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/rbind.tangram.Rd -------------------------------------------------------------------------------- /man/render_f.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/render_f.Rd -------------------------------------------------------------------------------- /man/render_route_tangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/render_route_tangram.Rd -------------------------------------------------------------------------------- /man/replace_cell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/replace_cell.Rd -------------------------------------------------------------------------------- /man/rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/rmd.Rd -------------------------------------------------------------------------------- /man/rowscols.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/rowscols.Rd -------------------------------------------------------------------------------- /man/rtf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/rtf.Rd -------------------------------------------------------------------------------- /man/rtf.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/rtf.default.Rd -------------------------------------------------------------------------------- /man/rtf.tangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/rtf.tangram.Rd -------------------------------------------------------------------------------- /man/select_col.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/select_col.Rd -------------------------------------------------------------------------------- /man/select_row.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/select_row.Rd -------------------------------------------------------------------------------- /man/smd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/smd.Rd -------------------------------------------------------------------------------- /man/smd_cell.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/smd_cell.Rd -------------------------------------------------------------------------------- /man/smd_compare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/smd_compare.Rd -------------------------------------------------------------------------------- /man/smd_contingency.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/smd_contingency.Rd -------------------------------------------------------------------------------- /man/smd_dist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/smd_dist.Rd -------------------------------------------------------------------------------- /man/smd_fraction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/smd_fraction.Rd -------------------------------------------------------------------------------- /man/smd_meansd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/smd_meansd.Rd -------------------------------------------------------------------------------- /man/standard_difference.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/standard_difference.Rd -------------------------------------------------------------------------------- /man/summarize_nejm_horz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/summarize_nejm_horz.Rd -------------------------------------------------------------------------------- /man/summarize_nejm_vert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/summarize_nejm_vert.Rd -------------------------------------------------------------------------------- /man/summary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/summary.Rd -------------------------------------------------------------------------------- /man/table_builder.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/table_builder.Rd -------------------------------------------------------------------------------- /man/table_flatten.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/table_flatten.Rd -------------------------------------------------------------------------------- /man/tangram.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/man/tangram.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/testExclude.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/tests/testthat/testExclude.R -------------------------------------------------------------------------------- /tests/testthat/testHtmlify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/tests/testthat/testHtmlify.R -------------------------------------------------------------------------------- /tests/testthat/testInterceptHmisc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/tests/testthat/testInterceptHmisc.R -------------------------------------------------------------------------------- /tests/testthat/testLatexify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/tests/testthat/testLatexify.R -------------------------------------------------------------------------------- /tests/testthat/testParser.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/tests/testthat/testParser.R -------------------------------------------------------------------------------- /tests/testthat/testTableBuilder.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/tests/testthat/testTableBuilder.R -------------------------------------------------------------------------------- /tests/testthat/testTableGen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spgarbet/tangram/HEAD/tests/testthat/testTableGen.R --------------------------------------------------------------------------------