View source: R/stepwiseSearch.R
stepwiseSearch | R Documentation |
Executes an NLME stepwise covariate search
stepwiseSearch(
model,
hostPlatform = NULL,
params,
covariateModel,
stepwiseParams,
runInBackground = FALSE,
...
)
model |
PK/PD model class object. |
hostPlatform |
Host definition for model execution. See |
params |
Engine parameters. See |
covariateModel |
Covariate Effects Model providing the relationship
between covariates and structural parameters to test ( |
stepwiseParams |
Stepwise parameters defining decision tree.
See |
runInBackground |
Set to |
... |
Additional arguments for |
if runInBackground = FALSE
, a data frame is returned with
stepwise search results, i.e. "Overall" comma separated file.
Otherwise the StepwiseNlmeJob
class object is returned.
hostParams, engineParams
# Define the model
model <- pkmodel(numCompartments = 2,
data = pkData,
ID = "Subject",
Time = "Act_Time",
A1 = "Amount",
CObs = "Conc")
# Add Gender covariate of type categorical
model <- addCovariate(model,
covariate = "Gender",
type = "Categorical",
effect = c("V2", "Cl2"),
levels = c(0, 1),
labels = c("Female", "Male"))
# Add Bodyweight covariate of type continuous
model <- addCovariate(model,
covariate = "BodyWeight",
type = "Continuous",
direction = "Backward",
center = "Mean",
effect = c("V", "Cl"))
# Define the host
defaultHost <- hostParams(parallelMethod = "None",
hostName = "local",
numCores = 1)
# Define the engine parameters
params <- engineParams(model)
# Define covariate model
cp <- covariateModel(model)
# Define the stepwise parameters
sp <- StepwiseParams(0.01, 0.001, "-2LL")
# Perform stepwise search
OverallDF <- stepwiseSearch(model = model,
hostPlatform = defaultHost,
params = params,
covariateModel = cp,
stepwiseParams = sp,
runInBackground = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.