Description Usage Arguments Details Value Errors References See Also Examples
This function plots the 3D-ROC curve using the point coordinates, computed by the function CalculateHUM_ROC
. Optionally visualizes the optimal threshold point, which gives the maximal accuracy of the classifier(feature) (see CalcROC
).
1 2 | Calculate3D(sel,Sn,Sp,S3,optSn,optSp,optS3,thresholds,HUM,
name,print.optim=TRUE)
|
sel |
a character value, which is the name of the selected feature. |
Sn |
a numeric vector of the x-coordinates of the ROC curve.. |
Sp |
a numeric vector of the y-coordinates of the ROC curve. |
S3 |
a numeric vector of the z-coordinates of the ROC curve. |
optSn |
the first coordinate of the optimal threshold |
optSp |
the second coordinate of the optimal threshold |
optS3 |
the third coordinate of the optimal threshold |
thresholds |
a numeric vector with threshold values to calculate point coordinates. |
HUM |
a numeric vector of HUM values, calculated using function. |
name |
a character vector of class labels. |
print.optim |
a boolean parameter to plot the optimal threshold point on the graph. The default value is TRUE. |
This function's main job is to plot the 3D-ROC curve according to the given point coordinates.
The function doesn't return any value.
If there exists NA values for specificity or sensitivity values, or HUM values the plotting fails and an error is triggered with message “Values are missing”
Li, J. and Fine, J. P. (2008): ROC Analysis with Multiple Tests and Multiple Classes: methodology and its application in microarray studies.Biostatistics. 9 (3): 566-576.
Natalia Novoselova, Cristina Della Beffa, Junxi Wang, Jialiang Li, Frank Pessler, Frank Klawonn. HUM Calculator and HUM package for R: easy-to-use software tools for multicategory receiver operating characteristic analysis» / Bioinformatics. – 2014. – Vol. 30 (11): 1635-1636 doi:10.1093/ bioinformatics/btu086.
CalculateHUM_seq
, CalculateHUM_ROC
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | data(leukemia72)
# Basic example
# class label must be factor
leukemia72[,ncol(leukemia72)]<-as.factor(leukemia72[,ncol(leukemia72)])
xdata=leukemia72
indexF=names(xdata)[10]
indexClass=ncol(xdata)
label=levels(xdata[,indexClass])
indexLabel=label
out=CalculateHUM_seq(xdata,indexF,indexClass,indexLabel)
HUM<-out$HUM
seq<-out$seq
out=CalculateHUM_ROC(xdata,indexF,indexClass,indexLabel,seq)
Calculate3D(indexF,out$Sn,out$Sp,out$S3,out$optSn,out$optSp,out$optS3,
out$thresholds,HUM,indexLabel[seq])
|
Loading required package: gtools
Loading required package: Rcpp
Warning messages:
1: In rgl.init(initValue, onlyNULL) : RGL: unable to open X11 display
2: 'rgl_init' failed, running with rgl.useNULL = TRUE
3: .onUnload failed in unloadNamespace() for 'rgl', details:
call: fun(...)
error: object 'rgl_quit' not found
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.