tblAUC function

Table output of gAUCs

Table output of gAUCs

Do multiple AUCs and returns a result table. See gNCA for more detail i.e. iAUC

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

Returns

Basically same with gAUC

Author(s)

Kyun-Seop Bae k@acr.kr

See Also

help, gAUC

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)