system_view | R Documentation |
Displays information (dosing, simulation options, covariates, etc) about the system.
system_view(cfg, field = "all", verbose = FALSE)
cfg |
ubiquity system object |
field |
string indicating the aspect of the system to display |
verbose |
Boolean variable that when set to true will echo the information to the screen |
sequence of strings with system in formation (one line per element)
The field
"all"
will show all information about the system
"parameters"
summary of parameter information
"bolus"
currently set bolus dosing
"rate"
infusion rate dosing
"covariate"
covariates
"iiv"
variance/covariance information
"datasets"
loaded datasets
"simulation"
simulation options
"estimation"
estimation options
"nca"
non-compartmental analyses that have been performed
# To log and display the current system information:
# Creating a system file from the mab_pk example
fr = system_new(file_name = "system.txt",
system_file = "mab_pk",
overwrite = TRUE,
output_directory = tempdir())
# Building the system
cfg = build_system(system_file = file.path(tempdir(), "system.txt"),
output_directory = file.path(tempdir(), "output"),
temporary_directory = tempdir())
msgs = system_view(cfg, verbose=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.