getCAIndividualParameters | Get the estimated values for each subject of some of the individual CA parameters of the current project. |
getNCAIndividualParameters | Get the estimated values for each subject of some of the individual NCA parameters of the current project. |
Get CA individual parameters
Description
Get the estimated values for each subject of some of the individual CA parameters of the current project.
Usage
getCAIndividualParameters(...)
Arguments
…
(string) Name of the individual parameters whose values must be displayed.
Value
A data frame giving the estimated values of the individual parameters of interest for each subject,
and a list of their associated statistics.
Click here to see examples
indivParams = getCAIndividualParameters() # retrieve the values of all the available individual parameters.
indivParams = getCAIndividualParameters(“ka”, “V”) # retrieve the values of the individual parameters (“ka” ,”V”)
$parameters->
id ka V
1 0.8 1.2
. … …
N 0.4 2.2
## End(Not run)
Top of the page, PKanalix-R functions.
Get NCA individual parameters
Description
Get the estimated values for each subject of some of the individual NCA parameters of the current project.
Usage
getNCAIndividualParameters(...)
Arguments
…
(string) Name of the individual parameters whose values must be displayed.
Value
A data frame giving the estimated values of the individual parameters of interest for each subject,
and a list of their associated statistics.
Click here to see examples
indivParams = getNCAIndividualParameters() # retrieve the values of all the available parameters.
indivParams = getNCAIndividualParameters(“Tmax”,”Clast”) # retrieve the values of the parameters (“Tmax” ,”Clast”)
$parameters->
id Tmax Clast
1 0.8 1.2
. … …
N 0.4 2.2
## End(Not run)