Title: Create Pharmacometric Models
Version: 0.3.0
Description: Provides a user interface to create or modify pharmacometric models for various modeling and simulation software platforms.
License: MIT + file LICENSE
Imports: bsicons, bslib, config (≥ 0.3.1), dplyr, flextable, glue, golem (≥ 0.3.3), htmltools, htmlwidgets, jsonlite, magrittr, markdown, officer, pillar, rclipboard, readr, rhandsontable, rlang, shiny (≥ 1.7.1), shinyAce, shinyFiles, shinyjs, stats, tidyr, tools, utils, xfun
VignetteBuilder: knitr
Suggests: knitr (≥ 1.28), rmarkdown (≥ 2.2)
Encoding: UTF-8
RoxygenNote: 7.3.1
Depends: shinyBS
URL: https://github.com/sbihorel/pmxcode, https://sbihorel.github.io/pmxcode/
NeedsCompilation: no
Packaged: 2025-04-12 13:01:17 UTC; sebastien
Author: Sebastien Bihorel [cre, aut]
Maintainer: Sebastien Bihorel <sb.pmlab@gmail.com>
Repository: CRAN
Date/Publication: 2025-04-12 13:30:02 UTC

pmxcode: Create Pharmacometric Models

Description

logo

Provides a user interface to create or modify pharmacometric models for various modeling and simulation software platforms.

Author(s)

Maintainer: Sebastien Bihorel sb.pmlab@gmail.com

See Also

Useful links:


Run the Shiny Application

Description

Run the Shiny Application

Usage

run_app(
  onStart = NULL,
  options = list(launch.browser = TRUE),
  enableBookmarking = NULL,
  uiPattern = "/",
  ...
)

Arguments

onStart

A function that will be called before the app is actually run. This is only needed for shinyAppObj, since in the shinyAppDir case, a global.R file can be used for this purpose.

options

Named options that should be passed to the runApp call (these can be any of the following: "port", "launch.browser", "host", "quiet", "display.mode" and "test.mode"). You can also specify width and height parameters which provide a hint to the embedding environment about the ideal height/width for the app.

enableBookmarking

Can be one of "url", "server", or "disable". The default value, NULL, will respect the setting from any previous calls to enableBookmarking(). See enableBookmarking() for more information on bookmarking your app.

uiPattern

A regular expression that will be applied to each GET request to determine whether the ui should be used to handle the request. Note that the entire request path must match the regular expression in order for the match to be considered successful.

...

arguments to pass to golem_opts. See '?golem::get_golem_options' for more details.

Value

Starts the PMXcode Shiny application

Examples

## Not run: 
if( interactive() ){
  pmxcode::run_app()
}

## End(Not run)