View source: R/profile_estimation.r
profilePertubate | R Documentation |
Executes an NLME profile perturbation
profilePertubate(
hostPlatform,
params = NULL,
profiles,
model = NULL,
sortColumns = SortColumns(""),
scenarios = list(),
runInBackground = FALSE
)
hostPlatform |
How to execute the run(NlmeParallelHost) |
params |
Engine parameters(NlmeEngineExtraParams) |
profiles |
Profiles to perturbate(ProfileParameters) |
model |
PK/PD model |
sortColumns |
Optional list of columns to sort and fit(SortColumns) |
scenarios |
Optional list of scenarios to fit(NlmeScenario) |
runInBackground |
Set to |
List of results from NLME execution.
# metod = 3 is FOCE-LB
params <- NlmeEngineExtraParams(
method = 3,
numIterations = 1000
)
profile1 <- ProfileVar("tvV", 9.548, "-2,-1,0,1,2")
profile2 <- ProfileVar("tvCl", 0.919, "-0.5,0,1.5")
profiles <- ProfileParameters("USE_DELTA", c(profile1, profile2))
job <- profilePertubate(defaultHost, params, profiles, model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.