MonolixSuite in R
Breadcrumbs

exportSimulatedData

[Simulx] Export simulated data

Export the simulated dataset into a MonolixSuite compatible format.
It contains treatment information and simulation results and can be generated only when simulation results are available.

Usage

R
exportSimulatedData(filePath = "")

Arguments

filePath [optional](character) Custom path for the exported file. By default, it is written in the results folder of the current project, next to simulation results files. The default file name is simulatedData.csv.

Details

The generated dataset can then be loaded in Datxplore, PKanalix or Monolix.

Note: to export the simulated data and load it into another application in a single line, you can also use exportProject.

See also

exportProject

Examples

R
 initializeLixoftConnectors("simulx")
 project_name <- file.path(getDemoPath(), "1.overview", "newProject_TMDDmodel.smlx")
 loadProject(project_name)
 runSimulation()
 exportSimulatedData()