├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── JSON.R ├── apply_col_plan.R ├── apply_col_style_plan.R ├── apply_footnote_meta.R ├── apply_footnote_plan.R ├── apply_frmt_methods.R ├── apply_page_plan.R ├── apply_row_grp_plan.R ├── apply_table_frmt_plan.R ├── apply_tfrmt.R ├── big_n.R ├── body_plan.R ├── col_plan.R ├── col_style_plan.R ├── data.R ├── display_insights.R ├── eval_tidyselect.R ├── footnote_plan.R ├── frmt_plans.R ├── frmt_utils.R ├── mock_tbl.R ├── page_plan.R ├── prep_card.R ├── print_to_ggplot.R ├── print_to_gt.R ├── row_group_plan.R ├── shuffle_card.R ├── struct_utils.R ├── tfrmt.R ├── tfrmt_checks.R ├── tfrmt_layer.R ├── tfrmt_n_pct.R ├── tfrmt_sigdig.R ├── theme_element.R ├── utils-pipe.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── data-raw ├── create_data_ae.R ├── create_data_demog.R ├── create_data_efficacy.R └── create_data_labs.R ├── data ├── data_ae.rda ├── data_demog.rda ├── data_efficacy.rda └── data_labs.rda ├── images ├── example_n_percent.png ├── example_print_mock_gt1.png ├── example_print_mock_gt2.png ├── example_print_to_ggplot.png ├── example_print_to_gt.png ├── example_sigdig.png ├── tfrmt-frmts.jpg ├── tfrmt-groups-three-cols-cropped.jpg ├── tfrmt-row_group_plan-cropped.jpg └── tfrmt-span_structure-cropped.jpg ├── inst ├── WORDLIST ├── create_json_example_tfrmts.R └── json_examples │ ├── tfrmt_ae.json │ ├── tfrmt_demog.json │ └── tfrmt_efficacy.json ├── man ├── apply_frmt.Rd ├── as_json.Rd ├── big_n_structure.Rd ├── body_plan.Rd ├── cleaned_data_to_gt.Rd ├── col_plan.Rd ├── col_style_plan.Rd ├── data_ae.Rd ├── data_demog.Rd ├── data_efficacy.Rd ├── data_labs.Rd ├── display_row_frmts.Rd ├── display_val_frmts.Rd ├── element_block.Rd ├── element_row_grp_loc.Rd ├── figures │ ├── gt_readme.png │ ├── structure_objects.png │ ├── summary_subj_by_site.png │ ├── table_plans.png │ ├── tfrmt-frmts.jpg │ ├── tfrmt-groups-three-cols-cropped.jpg │ ├── tfrmt-groups-three-cols.jpg │ ├── tfrmt-groups.jpg │ ├── tfrmt-row_group_plan-cropped.jpg │ ├── tfrmt-row_group_plan.jpg │ ├── tfrmt-span_structure-cropped.jpg │ └── tfrmt.png ├── footnote_plan.Rd ├── footnote_structure.Rd ├── frmt.Rd ├── frmt_structure.Rd ├── frmt_utils.Rd ├── json_to_tfrmt.Rd ├── layer_tfrmt.Rd ├── make_mock_data.Rd ├── page_plan.Rd ├── page_structure.Rd ├── param_set.Rd ├── pipe.Rd ├── prep_big_n.Rd ├── prep_combine_vars.Rd ├── prep_hierarchical_fill.Rd ├── prep_label.Rd ├── print_mock_gt.Rd ├── print_to_ggplot.Rd ├── print_to_gt.Rd ├── row_grp_plan.Rd ├── row_grp_structure.Rd ├── shuffle_card.Rd ├── tfrmt.Rd ├── tfrmt_n_pct.Rd ├── tfrmt_sigdig.Rd ├── tfrmt_to_json.Rd ├── theme_element.Rd └── update_group.Rd ├── pkgdown ├── index.Rmd └── index.md ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── JSON.md │ ├── big_n.md │ ├── make_mock_data.md │ ├── prep_card.md │ └── shuffle_card.md │ ├── helper_transform_gt_html.R │ ├── test-JSON.R │ ├── test-apply_footnote_meta.R │ ├── test-apply_footnote_plan.R │ ├── test-apply_frmt.R │ ├── test-apply_page_plan.R │ ├── test-apply_row_grp_plan.R │ ├── test-apply_tfrmt.R │ ├── test-big_n.R │ ├── test-check_order_vars.R │ ├── test-col_plan.R │ ├── test-col_style_structure.R │ ├── test-display_insights.R │ ├── test-expr_to_filter.R │ ├── test-footnote_plan.R │ ├── test-make_mock_data.R │ ├── test-mrkdown_labels.R │ ├── test-prep_card.R │ ├── test-print_to_gt.R │ ├── test-quo_get.R │ ├── test-shuffle_card.R │ ├── test-tfmt.R │ ├── test-tfrmt_checks.R │ ├── test-tfrmt_n_pct.R │ ├── test-tfrmt_sigdig.R │ ├── test-utils_tfrmt.R │ └── test_print_to_ggplot.R ├── tfrmt.Rproj └── vignettes ├── .gitignore ├── big_ns.Rmd ├── body_plan.Rmd ├── building_blocks.Rmd ├── building_mocks.Rmd ├── cards_to_tfrmt.Rmd ├── col_plan.Rmd ├── col_style_plan.Rmd ├── examples.Rmd ├── faq.Rmd ├── footnote_plan.Rmd ├── images ├── gt_readme.png ├── summary_subj_by_site.png ├── tfrmt-frmts.jpg ├── tfrmt-groups-three-cols-cropped.jpg ├── tfrmt-groups-three-cols.jpg ├── tfrmt-groups.jpg ├── tfrmt-row_group_plan-cropped.jpg ├── tfrmt-row_group_plan.jpg └── tfrmt-span_structure.jpg ├── json.Rmd ├── layer.Rmd ├── mock_examples.Rmd ├── page_plan.Rmd ├── print_to_ggplot.Rmd ├── row_grp_plan.Rmd ├── templates.Rmd └── unusual_tables.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/JSON.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/JSON.R -------------------------------------------------------------------------------- /R/apply_col_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/apply_col_plan.R -------------------------------------------------------------------------------- /R/apply_col_style_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/apply_col_style_plan.R -------------------------------------------------------------------------------- /R/apply_footnote_meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/apply_footnote_meta.R -------------------------------------------------------------------------------- /R/apply_footnote_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/apply_footnote_plan.R -------------------------------------------------------------------------------- /R/apply_frmt_methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/apply_frmt_methods.R -------------------------------------------------------------------------------- /R/apply_page_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/apply_page_plan.R -------------------------------------------------------------------------------- /R/apply_row_grp_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/apply_row_grp_plan.R -------------------------------------------------------------------------------- /R/apply_table_frmt_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/apply_table_frmt_plan.R -------------------------------------------------------------------------------- /R/apply_tfrmt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/apply_tfrmt.R -------------------------------------------------------------------------------- /R/big_n.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/big_n.R -------------------------------------------------------------------------------- /R/body_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/body_plan.R -------------------------------------------------------------------------------- /R/col_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/col_plan.R -------------------------------------------------------------------------------- /R/col_style_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/col_style_plan.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/data.R -------------------------------------------------------------------------------- /R/display_insights.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/display_insights.R -------------------------------------------------------------------------------- /R/eval_tidyselect.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/eval_tidyselect.R -------------------------------------------------------------------------------- /R/footnote_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/footnote_plan.R -------------------------------------------------------------------------------- /R/frmt_plans.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/frmt_plans.R -------------------------------------------------------------------------------- /R/frmt_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/frmt_utils.R -------------------------------------------------------------------------------- /R/mock_tbl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/mock_tbl.R -------------------------------------------------------------------------------- /R/page_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/page_plan.R -------------------------------------------------------------------------------- /R/prep_card.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/prep_card.R -------------------------------------------------------------------------------- /R/print_to_ggplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/print_to_ggplot.R -------------------------------------------------------------------------------- /R/print_to_gt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/print_to_gt.R -------------------------------------------------------------------------------- /R/row_group_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/row_group_plan.R -------------------------------------------------------------------------------- /R/shuffle_card.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/shuffle_card.R -------------------------------------------------------------------------------- /R/struct_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/struct_utils.R -------------------------------------------------------------------------------- /R/tfrmt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/tfrmt.R -------------------------------------------------------------------------------- /R/tfrmt_checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/tfrmt_checks.R -------------------------------------------------------------------------------- /R/tfrmt_layer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/tfrmt_layer.R -------------------------------------------------------------------------------- /R/tfrmt_n_pct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/tfrmt_n_pct.R -------------------------------------------------------------------------------- /R/tfrmt_sigdig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/tfrmt_sigdig.R -------------------------------------------------------------------------------- /R/theme_element.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/theme_element.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/create_data_ae.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/data-raw/create_data_ae.R -------------------------------------------------------------------------------- /data-raw/create_data_demog.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/data-raw/create_data_demog.R -------------------------------------------------------------------------------- /data-raw/create_data_efficacy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/data-raw/create_data_efficacy.R -------------------------------------------------------------------------------- /data-raw/create_data_labs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/data-raw/create_data_labs.R -------------------------------------------------------------------------------- /data/data_ae.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/data/data_ae.rda -------------------------------------------------------------------------------- /data/data_demog.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/data/data_demog.rda -------------------------------------------------------------------------------- /data/data_efficacy.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/data/data_efficacy.rda -------------------------------------------------------------------------------- /data/data_labs.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/data/data_labs.rda -------------------------------------------------------------------------------- /images/example_n_percent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/example_n_percent.png -------------------------------------------------------------------------------- /images/example_print_mock_gt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/example_print_mock_gt1.png -------------------------------------------------------------------------------- /images/example_print_mock_gt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/example_print_mock_gt2.png -------------------------------------------------------------------------------- /images/example_print_to_ggplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/example_print_to_ggplot.png -------------------------------------------------------------------------------- /images/example_print_to_gt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/example_print_to_gt.png -------------------------------------------------------------------------------- /images/example_sigdig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/example_sigdig.png -------------------------------------------------------------------------------- /images/tfrmt-frmts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/tfrmt-frmts.jpg -------------------------------------------------------------------------------- /images/tfrmt-groups-three-cols-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/tfrmt-groups-three-cols-cropped.jpg -------------------------------------------------------------------------------- /images/tfrmt-row_group_plan-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/tfrmt-row_group_plan-cropped.jpg -------------------------------------------------------------------------------- /images/tfrmt-span_structure-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/images/tfrmt-span_structure-cropped.jpg -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/create_json_example_tfrmts.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/inst/create_json_example_tfrmts.R -------------------------------------------------------------------------------- /inst/json_examples/tfrmt_ae.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/inst/json_examples/tfrmt_ae.json -------------------------------------------------------------------------------- /inst/json_examples/tfrmt_demog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/inst/json_examples/tfrmt_demog.json -------------------------------------------------------------------------------- /inst/json_examples/tfrmt_efficacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/inst/json_examples/tfrmt_efficacy.json -------------------------------------------------------------------------------- /man/apply_frmt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/apply_frmt.Rd -------------------------------------------------------------------------------- /man/as_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/as_json.Rd -------------------------------------------------------------------------------- /man/big_n_structure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/big_n_structure.Rd -------------------------------------------------------------------------------- /man/body_plan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/body_plan.Rd -------------------------------------------------------------------------------- /man/cleaned_data_to_gt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/cleaned_data_to_gt.Rd -------------------------------------------------------------------------------- /man/col_plan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/col_plan.Rd -------------------------------------------------------------------------------- /man/col_style_plan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/col_style_plan.Rd -------------------------------------------------------------------------------- /man/data_ae.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/data_ae.Rd -------------------------------------------------------------------------------- /man/data_demog.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/data_demog.Rd -------------------------------------------------------------------------------- /man/data_efficacy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/data_efficacy.Rd -------------------------------------------------------------------------------- /man/data_labs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/data_labs.Rd -------------------------------------------------------------------------------- /man/display_row_frmts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/display_row_frmts.Rd -------------------------------------------------------------------------------- /man/display_val_frmts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/display_val_frmts.Rd -------------------------------------------------------------------------------- /man/element_block.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/element_block.Rd -------------------------------------------------------------------------------- /man/element_row_grp_loc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/element_row_grp_loc.Rd -------------------------------------------------------------------------------- /man/figures/gt_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/gt_readme.png -------------------------------------------------------------------------------- /man/figures/structure_objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/structure_objects.png -------------------------------------------------------------------------------- /man/figures/summary_subj_by_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/summary_subj_by_site.png -------------------------------------------------------------------------------- /man/figures/table_plans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/table_plans.png -------------------------------------------------------------------------------- /man/figures/tfrmt-frmts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/tfrmt-frmts.jpg -------------------------------------------------------------------------------- /man/figures/tfrmt-groups-three-cols-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/tfrmt-groups-three-cols-cropped.jpg -------------------------------------------------------------------------------- /man/figures/tfrmt-groups-three-cols.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/tfrmt-groups-three-cols.jpg -------------------------------------------------------------------------------- /man/figures/tfrmt-groups.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/tfrmt-groups.jpg -------------------------------------------------------------------------------- /man/figures/tfrmt-row_group_plan-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/tfrmt-row_group_plan-cropped.jpg -------------------------------------------------------------------------------- /man/figures/tfrmt-row_group_plan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/tfrmt-row_group_plan.jpg -------------------------------------------------------------------------------- /man/figures/tfrmt-span_structure-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/tfrmt-span_structure-cropped.jpg -------------------------------------------------------------------------------- /man/figures/tfrmt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/figures/tfrmt.png -------------------------------------------------------------------------------- /man/footnote_plan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/footnote_plan.Rd -------------------------------------------------------------------------------- /man/footnote_structure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/footnote_structure.Rd -------------------------------------------------------------------------------- /man/frmt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/frmt.Rd -------------------------------------------------------------------------------- /man/frmt_structure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/frmt_structure.Rd -------------------------------------------------------------------------------- /man/frmt_utils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/frmt_utils.Rd -------------------------------------------------------------------------------- /man/json_to_tfrmt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/json_to_tfrmt.Rd -------------------------------------------------------------------------------- /man/layer_tfrmt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/layer_tfrmt.Rd -------------------------------------------------------------------------------- /man/make_mock_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/make_mock_data.Rd -------------------------------------------------------------------------------- /man/page_plan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/page_plan.Rd -------------------------------------------------------------------------------- /man/page_structure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/page_structure.Rd -------------------------------------------------------------------------------- /man/param_set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/param_set.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/prep_big_n.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/prep_big_n.Rd -------------------------------------------------------------------------------- /man/prep_combine_vars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/prep_combine_vars.Rd -------------------------------------------------------------------------------- /man/prep_hierarchical_fill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/prep_hierarchical_fill.Rd -------------------------------------------------------------------------------- /man/prep_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/prep_label.Rd -------------------------------------------------------------------------------- /man/print_mock_gt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/print_mock_gt.Rd -------------------------------------------------------------------------------- /man/print_to_ggplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/print_to_ggplot.Rd -------------------------------------------------------------------------------- /man/print_to_gt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/print_to_gt.Rd -------------------------------------------------------------------------------- /man/row_grp_plan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/row_grp_plan.Rd -------------------------------------------------------------------------------- /man/row_grp_structure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/row_grp_structure.Rd -------------------------------------------------------------------------------- /man/shuffle_card.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/shuffle_card.Rd -------------------------------------------------------------------------------- /man/tfrmt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/tfrmt.Rd -------------------------------------------------------------------------------- /man/tfrmt_n_pct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/tfrmt_n_pct.Rd -------------------------------------------------------------------------------- /man/tfrmt_sigdig.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/tfrmt_sigdig.Rd -------------------------------------------------------------------------------- /man/tfrmt_to_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/tfrmt_to_json.Rd -------------------------------------------------------------------------------- /man/theme_element.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/theme_element.Rd -------------------------------------------------------------------------------- /man/update_group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/man/update_group.Rd -------------------------------------------------------------------------------- /pkgdown/index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/pkgdown/index.Rmd -------------------------------------------------------------------------------- /pkgdown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/pkgdown/index.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/JSON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/_snaps/JSON.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/big_n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/_snaps/big_n.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/make_mock_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/_snaps/make_mock_data.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/prep_card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/_snaps/prep_card.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/shuffle_card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/_snaps/shuffle_card.md -------------------------------------------------------------------------------- /tests/testthat/helper_transform_gt_html.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/helper_transform_gt_html.R -------------------------------------------------------------------------------- /tests/testthat/test-JSON.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-JSON.R -------------------------------------------------------------------------------- /tests/testthat/test-apply_footnote_meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-apply_footnote_meta.R -------------------------------------------------------------------------------- /tests/testthat/test-apply_footnote_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-apply_footnote_plan.R -------------------------------------------------------------------------------- /tests/testthat/test-apply_frmt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-apply_frmt.R -------------------------------------------------------------------------------- /tests/testthat/test-apply_page_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-apply_page_plan.R -------------------------------------------------------------------------------- /tests/testthat/test-apply_row_grp_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-apply_row_grp_plan.R -------------------------------------------------------------------------------- /tests/testthat/test-apply_tfrmt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-apply_tfrmt.R -------------------------------------------------------------------------------- /tests/testthat/test-big_n.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-big_n.R -------------------------------------------------------------------------------- /tests/testthat/test-check_order_vars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-check_order_vars.R -------------------------------------------------------------------------------- /tests/testthat/test-col_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-col_plan.R -------------------------------------------------------------------------------- /tests/testthat/test-col_style_structure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-col_style_structure.R -------------------------------------------------------------------------------- /tests/testthat/test-display_insights.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-display_insights.R -------------------------------------------------------------------------------- /tests/testthat/test-expr_to_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-expr_to_filter.R -------------------------------------------------------------------------------- /tests/testthat/test-footnote_plan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-footnote_plan.R -------------------------------------------------------------------------------- /tests/testthat/test-make_mock_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-make_mock_data.R -------------------------------------------------------------------------------- /tests/testthat/test-mrkdown_labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-mrkdown_labels.R -------------------------------------------------------------------------------- /tests/testthat/test-prep_card.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-prep_card.R -------------------------------------------------------------------------------- /tests/testthat/test-print_to_gt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-print_to_gt.R -------------------------------------------------------------------------------- /tests/testthat/test-quo_get.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-quo_get.R -------------------------------------------------------------------------------- /tests/testthat/test-shuffle_card.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-shuffle_card.R -------------------------------------------------------------------------------- /tests/testthat/test-tfmt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-tfmt.R -------------------------------------------------------------------------------- /tests/testthat/test-tfrmt_checks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-tfrmt_checks.R -------------------------------------------------------------------------------- /tests/testthat/test-tfrmt_n_pct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-tfrmt_n_pct.R -------------------------------------------------------------------------------- /tests/testthat/test-tfrmt_sigdig.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-tfrmt_sigdig.R -------------------------------------------------------------------------------- /tests/testthat/test-utils_tfrmt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test-utils_tfrmt.R -------------------------------------------------------------------------------- /tests/testthat/test_print_to_ggplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tests/testthat/test_print_to_ggplot.R -------------------------------------------------------------------------------- /tfrmt.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/tfrmt.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/big_ns.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/big_ns.Rmd -------------------------------------------------------------------------------- /vignettes/body_plan.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/body_plan.Rmd -------------------------------------------------------------------------------- /vignettes/building_blocks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/building_blocks.Rmd -------------------------------------------------------------------------------- /vignettes/building_mocks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/building_mocks.Rmd -------------------------------------------------------------------------------- /vignettes/cards_to_tfrmt.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/cards_to_tfrmt.Rmd -------------------------------------------------------------------------------- /vignettes/col_plan.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/col_plan.Rmd -------------------------------------------------------------------------------- /vignettes/col_style_plan.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/col_style_plan.Rmd -------------------------------------------------------------------------------- /vignettes/examples.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/examples.Rmd -------------------------------------------------------------------------------- /vignettes/faq.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/faq.Rmd -------------------------------------------------------------------------------- /vignettes/footnote_plan.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/footnote_plan.Rmd -------------------------------------------------------------------------------- /vignettes/images/gt_readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/images/gt_readme.png -------------------------------------------------------------------------------- /vignettes/images/summary_subj_by_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/images/summary_subj_by_site.png -------------------------------------------------------------------------------- /vignettes/images/tfrmt-frmts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/images/tfrmt-frmts.jpg -------------------------------------------------------------------------------- /vignettes/images/tfrmt-groups-three-cols-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/images/tfrmt-groups-three-cols-cropped.jpg -------------------------------------------------------------------------------- /vignettes/images/tfrmt-groups-three-cols.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/images/tfrmt-groups-three-cols.jpg -------------------------------------------------------------------------------- /vignettes/images/tfrmt-groups.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/images/tfrmt-groups.jpg -------------------------------------------------------------------------------- /vignettes/images/tfrmt-row_group_plan-cropped.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/images/tfrmt-row_group_plan-cropped.jpg -------------------------------------------------------------------------------- /vignettes/images/tfrmt-row_group_plan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/images/tfrmt-row_group_plan.jpg -------------------------------------------------------------------------------- /vignettes/images/tfrmt-span_structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/images/tfrmt-span_structure.jpg -------------------------------------------------------------------------------- /vignettes/json.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/json.Rmd -------------------------------------------------------------------------------- /vignettes/layer.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/layer.Rmd -------------------------------------------------------------------------------- /vignettes/mock_examples.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/mock_examples.Rmd -------------------------------------------------------------------------------- /vignettes/page_plan.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/page_plan.Rmd -------------------------------------------------------------------------------- /vignettes/print_to_ggplot.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/print_to_ggplot.Rmd -------------------------------------------------------------------------------- /vignettes/row_grp_plan.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/row_grp_plan.Rmd -------------------------------------------------------------------------------- /vignettes/templates.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/templates.Rmd -------------------------------------------------------------------------------- /vignettes/unusual_tables.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSK-Biostatistics/tfrmt/HEAD/vignettes/unusual_tables.Rmd --------------------------------------------------------------------------------