├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ └── rhub.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── data.R ├── deltamethod.R ├── expand_modelframe.R ├── forest_plot.R ├── get_sample_data.R └── run_interactiveforestplot.R ├── README.md ├── _pkgdown.yml ├── coveffectsplot.Rproj ├── cran-comments.md ├── data-raw ├── DATASET.R ├── covdatasim.csv ├── druglabel.csv └── wtage.csv ├── data ├── covdatasim.rda ├── prezista.rda └── wtage.rda ├── docs ├── 404.html ├── LICENSE-text.html ├── articles │ ├── Exposure_Response_Example.html │ ├── Exposure_Response_Example_files │ │ ├── figure-html │ │ │ ├── bsvrangeplot-1.png │ │ │ ├── exprespmodeplotl-1.png │ │ │ ├── plot4b-1.png │ │ │ ├── plot5-1.png │ │ │ ├── plot667-1.png │ │ │ ├── unnamed-chunk-3-1.png │ │ │ ├── unnamed-chunk-4-1.png │ │ │ └── unnamed-chunk-6-1.png │ │ └── header-attrs-2.13 │ │ │ └── header-attrs.js │ ├── Figure4_6.png │ ├── Figure_7_4.png │ ├── Figure_8_4.png │ ├── Figure_S_PD_4.png │ ├── PKPD_Example.html │ ├── PKPD_Example_files │ │ ├── figure-html │ │ │ ├── pkpdsimulation-1.png │ │ │ ├── unnamed-chunk-3-1.png │ │ │ ├── unnamed-chunk-5-1.png │ │ │ └── unnamed-chunk-7-1.png │ │ └── header-attrs-2.13 │ │ │ └── header-attrs.js │ ├── PK_Example.html │ ├── PK_Example_files │ │ ├── figure-html │ │ │ ├── computenca -1.png │ │ │ ├── computenca-1.png │ │ │ ├── pksimulation-1.png │ │ │ ├── unnamed-chunk-2-1.png │ │ │ ├── unnamed-chunk-5-1.png │ │ │ ├── unnamed-chunk-7-1.png │ │ │ └── unnamed-chunk-8-1.png │ │ └── header-attrs-2.13 │ │ │ └── header-attrs.js │ ├── PK_Example_full.html │ ├── PK_Example_full_files │ │ ├── figure-html │ │ │ ├── computenca -1.png │ │ │ ├── computenca-1.png │ │ │ ├── covcomb -1.png │ │ │ ├── covcomb-1.png │ │ │ ├── pksimulation-1.png │ │ │ ├── unnamed-chunk-2-1.png │ │ │ ├── unnamed-chunk-5-1.png │ │ │ ├── unnamed-chunk-7-1.png │ │ │ └── unnamed-chunk-8-1.png │ │ └── header-attrs-2.13 │ │ │ └── header-attrs.js │ ├── Pediatric_Cov_Sim.html │ ├── Pediatric_Cov_Sim_files │ │ ├── figure-html │ │ │ ├── computenca-1.png │ │ │ ├── ncapedpkmodel-1.png │ │ │ ├── pedpkmodel-1.png │ │ │ ├── simcovariate-1.png │ │ │ ├── simcovariatemodelpk-1.png │ │ │ └── simcovariatemodelpkparam-1.png │ │ └── header-attrs-2.13 │ │ │ └── header-attrs.js │ ├── app.html │ ├── app_files │ │ └── header-attrs-2.13 │ │ │ └── header-attrs.js │ ├── coveffectsplot.png │ ├── coveffectsplot0.png │ ├── coveffectsplot2.png │ ├── coveffectsplot4.png │ ├── coveffectsplot5.png │ ├── coveffectsplot6.png │ ├── coveffectsplot7.png │ ├── coveffectsplot_color.png │ ├── coveffectsplot_full.png │ ├── img │ │ ├── logo_coveffectsplot.png │ │ ├── prezista.png │ │ ├── snapshotforest.png │ │ └── snapshottable.png │ ├── index.html │ ├── introduction_to_coveffectsplot.html │ └── introduction_to_coveffectsplot_files │ │ ├── figure-html │ │ ├── unnamed-chunk-2-1.png │ │ ├── unnamed-chunk-2-2.png │ │ ├── unnamed-chunk-4-1.png │ │ ├── unnamed-chunk-5-1.png │ │ ├── unnamed-chunk-6-1.png │ │ └── unnamed-chunk-8-1.png │ │ └── header-attrs-2.13 │ │ └── header-attrs.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── Rplot002.png │ ├── Rplot003.png │ ├── Rplot004.png │ ├── Rplot005.png │ ├── covdatasim.html │ ├── deltamethod.html │ ├── draw_key.html │ ├── draw_key_hpath.html │ ├── draw_key_pointrangeh.html │ ├── expand_modelframe.html │ ├── forest_plot-1.png │ ├── forest_plot-2.png │ ├── forest_plot-3.png │ ├── forest_plot-4.png │ ├── forest_plot.html │ ├── get_sample_data.html │ ├── index.html │ ├── prezista.html │ ├── run_interactiveforestplot.html │ └── wtage.html └── sitemap.xml ├── inst ├── CITATION ├── sample_data │ ├── dataforest.csv │ ├── dfall.csv │ ├── forest-plot-table.csv │ └── forestplotdatacpidata.csv └── shiny │ ├── global.r │ ├── img │ ├── prezista.png │ ├── snapshotforest.png │ └── snapshottable.png │ ├── server.R │ ├── text │ └── howto.md │ └── ui.R ├── man ├── covdatasim.Rd ├── deltamethod.Rd ├── draw_key.Rd ├── expand_modelframe.Rd ├── forest_plot.Rd ├── get_sample_data.Rd ├── prezista.Rd ├── run_interactiveforestplot.Rd └── wtage.Rd └── vignettes ├── .gitignore ├── Exposure_Response_Example.Rmd ├── PKPD_Example.Rmd ├── PK_Example.Rmd ├── PK_Example_full.Rmd ├── Pediatric_Cov_Sim.Rmd ├── app.Rmd ├── covdatasim.csv ├── img ├── logo_coveffectsplot.png ├── prezista.png ├── snapshotforest.png └── snapshottable.png └── introduction_to_coveffectsplot.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Samer Mouksassi -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/R/data.R -------------------------------------------------------------------------------- /R/deltamethod.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/R/deltamethod.R -------------------------------------------------------------------------------- /R/expand_modelframe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/R/expand_modelframe.R -------------------------------------------------------------------------------- /R/forest_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/R/forest_plot.R -------------------------------------------------------------------------------- /R/get_sample_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/R/get_sample_data.R -------------------------------------------------------------------------------- /R/run_interactiveforestplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/R/run_interactiveforestplot.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /coveffectsplot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/coveffectsplot.Rproj -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/DATASET.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/data-raw/DATASET.R -------------------------------------------------------------------------------- /data-raw/covdatasim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/data-raw/covdatasim.csv -------------------------------------------------------------------------------- /data-raw/druglabel.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/data-raw/druglabel.csv -------------------------------------------------------------------------------- /data-raw/wtage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/data-raw/wtage.csv -------------------------------------------------------------------------------- /data/covdatasim.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/data/covdatasim.rda -------------------------------------------------------------------------------- /data/prezista.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/data/prezista.rda -------------------------------------------------------------------------------- /data/wtage.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/data/wtage.rda -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/LICENSE-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/LICENSE-text.html -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example.html -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example_files/figure-html/bsvrangeplot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example_files/figure-html/bsvrangeplot-1.png -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example_files/figure-html/exprespmodeplotl-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example_files/figure-html/exprespmodeplotl-1.png -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example_files/figure-html/plot4b-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example_files/figure-html/plot4b-1.png -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example_files/figure-html/plot5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example_files/figure-html/plot5-1.png -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example_files/figure-html/plot667-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example_files/figure-html/plot667-1.png -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/Exposure_Response_Example_files/header-attrs-2.13/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Exposure_Response_Example_files/header-attrs-2.13/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/Figure4_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Figure4_6.png -------------------------------------------------------------------------------- /docs/articles/Figure_7_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Figure_7_4.png -------------------------------------------------------------------------------- /docs/articles/Figure_8_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Figure_8_4.png -------------------------------------------------------------------------------- /docs/articles/Figure_S_PD_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Figure_S_PD_4.png -------------------------------------------------------------------------------- /docs/articles/PKPD_Example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PKPD_Example.html -------------------------------------------------------------------------------- /docs/articles/PKPD_Example_files/figure-html/pkpdsimulation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PKPD_Example_files/figure-html/pkpdsimulation-1.png -------------------------------------------------------------------------------- /docs/articles/PKPD_Example_files/figure-html/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PKPD_Example_files/figure-html/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /docs/articles/PKPD_Example_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PKPD_Example_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/PKPD_Example_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PKPD_Example_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/PKPD_Example_files/header-attrs-2.13/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PKPD_Example_files/header-attrs-2.13/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/PK_Example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example.html -------------------------------------------------------------------------------- /docs/articles/PK_Example_files/figure-html/computenca -1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_files/figure-html/computenca -1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_files/figure-html/computenca-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_files/figure-html/computenca-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_files/figure-html/pksimulation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_files/figure-html/pksimulation-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_files/header-attrs-2.13/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_files/header-attrs-2.13/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/PK_Example_full.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full.html -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/figure-html/computenca -1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/figure-html/computenca -1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/figure-html/computenca-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/figure-html/computenca-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/figure-html/covcomb -1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/figure-html/covcomb -1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/figure-html/covcomb-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/figure-html/covcomb-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/figure-html/pksimulation-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/figure-html/pksimulation-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/PK_Example_full_files/header-attrs-2.13/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/PK_Example_full_files/header-attrs-2.13/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/Pediatric_Cov_Sim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Pediatric_Cov_Sim.html -------------------------------------------------------------------------------- /docs/articles/Pediatric_Cov_Sim_files/figure-html/computenca-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Pediatric_Cov_Sim_files/figure-html/computenca-1.png -------------------------------------------------------------------------------- /docs/articles/Pediatric_Cov_Sim_files/figure-html/ncapedpkmodel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Pediatric_Cov_Sim_files/figure-html/ncapedpkmodel-1.png -------------------------------------------------------------------------------- /docs/articles/Pediatric_Cov_Sim_files/figure-html/pedpkmodel-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Pediatric_Cov_Sim_files/figure-html/pedpkmodel-1.png -------------------------------------------------------------------------------- /docs/articles/Pediatric_Cov_Sim_files/figure-html/simcovariate-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Pediatric_Cov_Sim_files/figure-html/simcovariate-1.png -------------------------------------------------------------------------------- /docs/articles/Pediatric_Cov_Sim_files/figure-html/simcovariatemodelpk-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Pediatric_Cov_Sim_files/figure-html/simcovariatemodelpk-1.png -------------------------------------------------------------------------------- /docs/articles/Pediatric_Cov_Sim_files/figure-html/simcovariatemodelpkparam-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Pediatric_Cov_Sim_files/figure-html/simcovariatemodelpkparam-1.png -------------------------------------------------------------------------------- /docs/articles/Pediatric_Cov_Sim_files/header-attrs-2.13/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/Pediatric_Cov_Sim_files/header-attrs-2.13/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/app.html -------------------------------------------------------------------------------- /docs/articles/app_files/header-attrs-2.13/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/app_files/header-attrs-2.13/header-attrs.js -------------------------------------------------------------------------------- /docs/articles/coveffectsplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/coveffectsplot.png -------------------------------------------------------------------------------- /docs/articles/coveffectsplot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/coveffectsplot0.png -------------------------------------------------------------------------------- /docs/articles/coveffectsplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/coveffectsplot2.png -------------------------------------------------------------------------------- /docs/articles/coveffectsplot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/coveffectsplot4.png -------------------------------------------------------------------------------- /docs/articles/coveffectsplot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/coveffectsplot5.png -------------------------------------------------------------------------------- /docs/articles/coveffectsplot6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/coveffectsplot6.png -------------------------------------------------------------------------------- /docs/articles/coveffectsplot7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/coveffectsplot7.png -------------------------------------------------------------------------------- /docs/articles/coveffectsplot_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/coveffectsplot_color.png -------------------------------------------------------------------------------- /docs/articles/coveffectsplot_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/coveffectsplot_full.png -------------------------------------------------------------------------------- /docs/articles/img/logo_coveffectsplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/img/logo_coveffectsplot.png -------------------------------------------------------------------------------- /docs/articles/img/prezista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/img/prezista.png -------------------------------------------------------------------------------- /docs/articles/img/snapshotforest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/img/snapshotforest.png -------------------------------------------------------------------------------- /docs/articles/img/snapshottable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/img/snapshottable.png -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/introduction_to_coveffectsplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/introduction_to_coveffectsplot.html -------------------------------------------------------------------------------- /docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-2-2.png -------------------------------------------------------------------------------- /docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/introduction_to_coveffectsplot_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /docs/articles/introduction_to_coveffectsplot_files/header-attrs-2.13/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/articles/introduction_to_coveffectsplot_files/header-attrs-2.13/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/Rplot002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/Rplot002.png -------------------------------------------------------------------------------- /docs/reference/Rplot003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/Rplot003.png -------------------------------------------------------------------------------- /docs/reference/Rplot004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/Rplot004.png -------------------------------------------------------------------------------- /docs/reference/Rplot005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/Rplot005.png -------------------------------------------------------------------------------- /docs/reference/covdatasim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/covdatasim.html -------------------------------------------------------------------------------- /docs/reference/deltamethod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/deltamethod.html -------------------------------------------------------------------------------- /docs/reference/draw_key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/draw_key.html -------------------------------------------------------------------------------- /docs/reference/draw_key_hpath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/draw_key_hpath.html -------------------------------------------------------------------------------- /docs/reference/draw_key_pointrangeh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/draw_key_pointrangeh.html -------------------------------------------------------------------------------- /docs/reference/expand_modelframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/expand_modelframe.html -------------------------------------------------------------------------------- /docs/reference/forest_plot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/forest_plot-1.png -------------------------------------------------------------------------------- /docs/reference/forest_plot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/forest_plot-2.png -------------------------------------------------------------------------------- /docs/reference/forest_plot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/forest_plot-3.png -------------------------------------------------------------------------------- /docs/reference/forest_plot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/forest_plot-4.png -------------------------------------------------------------------------------- /docs/reference/forest_plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/forest_plot.html -------------------------------------------------------------------------------- /docs/reference/get_sample_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/get_sample_data.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/prezista.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/prezista.html -------------------------------------------------------------------------------- /docs/reference/run_interactiveforestplot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/run_interactiveforestplot.html -------------------------------------------------------------------------------- /docs/reference/wtage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/reference/wtage.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/sample_data/dataforest.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/sample_data/dataforest.csv -------------------------------------------------------------------------------- /inst/sample_data/dfall.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/sample_data/dfall.csv -------------------------------------------------------------------------------- /inst/sample_data/forest-plot-table.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/sample_data/forest-plot-table.csv -------------------------------------------------------------------------------- /inst/sample_data/forestplotdatacpidata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/sample_data/forestplotdatacpidata.csv -------------------------------------------------------------------------------- /inst/shiny/global.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/shiny/global.r -------------------------------------------------------------------------------- /inst/shiny/img/prezista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/shiny/img/prezista.png -------------------------------------------------------------------------------- /inst/shiny/img/snapshotforest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/shiny/img/snapshotforest.png -------------------------------------------------------------------------------- /inst/shiny/img/snapshottable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/shiny/img/snapshottable.png -------------------------------------------------------------------------------- /inst/shiny/server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/shiny/server.R -------------------------------------------------------------------------------- /inst/shiny/text/howto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/shiny/text/howto.md -------------------------------------------------------------------------------- /inst/shiny/ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/inst/shiny/ui.R -------------------------------------------------------------------------------- /man/covdatasim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/man/covdatasim.Rd -------------------------------------------------------------------------------- /man/deltamethod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/man/deltamethod.Rd -------------------------------------------------------------------------------- /man/draw_key.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/man/draw_key.Rd -------------------------------------------------------------------------------- /man/expand_modelframe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/man/expand_modelframe.Rd -------------------------------------------------------------------------------- /man/forest_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/man/forest_plot.Rd -------------------------------------------------------------------------------- /man/get_sample_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/man/get_sample_data.Rd -------------------------------------------------------------------------------- /man/prezista.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/man/prezista.Rd -------------------------------------------------------------------------------- /man/run_interactiveforestplot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/man/run_interactiveforestplot.Rd -------------------------------------------------------------------------------- /man/wtage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/man/wtage.Rd -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | 4 | -------------------------------------------------------------------------------- /vignettes/Exposure_Response_Example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/Exposure_Response_Example.Rmd -------------------------------------------------------------------------------- /vignettes/PKPD_Example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/PKPD_Example.Rmd -------------------------------------------------------------------------------- /vignettes/PK_Example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/PK_Example.Rmd -------------------------------------------------------------------------------- /vignettes/PK_Example_full.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/PK_Example_full.Rmd -------------------------------------------------------------------------------- /vignettes/Pediatric_Cov_Sim.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/Pediatric_Cov_Sim.Rmd -------------------------------------------------------------------------------- /vignettes/app.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/app.Rmd -------------------------------------------------------------------------------- /vignettes/covdatasim.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/covdatasim.csv -------------------------------------------------------------------------------- /vignettes/img/logo_coveffectsplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/img/logo_coveffectsplot.png -------------------------------------------------------------------------------- /vignettes/img/prezista.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/img/prezista.png -------------------------------------------------------------------------------- /vignettes/img/snapshotforest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/img/snapshotforest.png -------------------------------------------------------------------------------- /vignettes/img/snapshottable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/img/snapshottable.png -------------------------------------------------------------------------------- /vignettes/introduction_to_coveffectsplot.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smouksassi/coveffectsplot/HEAD/vignettes/introduction_to_coveffectsplot.Rmd --------------------------------------------------------------------------------