tblAUC {NonCompart} | R Documentation |
Table output of gAUCs
Description
Do multiple AUCs and returns a result table. See gNCA
for more detail i.e. iAUC
Usage
tblAUC(Data, key = "Subject", colX = "Time", colY = "Y", iAUC = "",
Ymax = "Emax", XofYmax = "TEmax", AUCname = "AUEClast", Outer = "NEAREST")
Arguments
Data |
data table name |
key |
column names of Data to be shown in the output table |
colX |
column name for x axis |
colY |
column name for y axis |
iAUC |
a data.frame to calculate interval AUCs |
Ymax |
usually Cmax or Emax |
XofYmax |
usually Tmax or TEmax |
AUCname |
usually AUClast or AUEClast |
Outer |
indicates how to do the out of x range point |
Details
Tabular output of AUC with many subjects. This calculates only Cmax(Emax), Tmax(TEmax), AUCs
Value
Basically same with gAUC
Author(s)
Kyun-Seop Bae <k@acr.kr>
See Also
Examples
tblAUC(Theoph, key="Subject", colX="Time", colY="conc")
iAUC = data.frame(Name=c("AUC[0-12h]","AUC[0-24h]"), Start=c(0,0), End=c(12,24))
tblAUC(Indometh, key="Subject", colX="time", colY="conc", iAUC=iAUC)
[Package NonCompart version 0.7.0 Index]