Certara.VPCResults
is an R package and Shiny application
used to parameterize and plot a Visual Predictive Check (VPC).
Use the GUI to select from various binning or binless methods and specify options such as censoring, stratification, and prediction-corrected.
Users are not limited by the GUI however,
Certara.VPCResults
will generate the underlying
tidyvpc
and ggplot2
code (.R
and/or .Rmd
) for you inside the Shiny application,
which you can then use to recreate your plot and table objects in R,
ensuring reproducibility and
traceability of VPC’s for reporting output.
install.packages("Certara.VPCResults",
repos = c("https://certara.jfrog.io/artifactory/certara-cran-release-public/",
"https://cloud.r-project.org"), method = "libcurl")
Certara.VPCResults
supports both NLME and NONMEM VPC
output files. The data requirements to use
Certara.VPCResults
are the same as the tidyvpc
package:
MDV == 0
Use the built in data objects from the tidyvpc
package
to explore functionality inside Certara.VPCResults
.
library(Certara.VPCResults)
library(tidyvpc)
vpcResultsUI(observed = obs_data, simulated = sim_data)
tidyvpc
packageggplot2
plotly
…and more!
With Certara.VPCResults
you can create output reports
from your tagged model diagnostics inside the Shiny GUI. After tagging
various model diagnostic plots or tables, navigate to the
REPORT tab and drag one or more tagged diagnostics to the
Report Output container.
Does your organization have their own MS Word style template? Use a
custom style template with Certara.VPCResults
by
overwriting the default report_template.docx
in your R
package library e.g.,
C:\Program Files\R\R-4.0.5\library\Certara.VPCResults\extdata\report_template.docx
.
Make sure to save your new template with the name
report_template.docx
.
Learn more about using a style template with
Certara.VPCResults
here.
In order to render reports to pdf
, the
rmarkdown
package requires a LaTeX
distribution available on the system. You can easily install this in R
using the command below:
install.packages('tinytex')
::install_tinytex() tinytex