Hi Stacey,
ROCR uses S4 classes. The elements are accessed using "@" instead of "$".
You can find an example on slide 12 of the following slide deck:
http://rocr.bioinf.mpi-sb.mpg.de/ROCR_Talk_Tobias_Sing.ppt
Also have a look at the R code that appears when you type "demo(ROCR)" in R
which contai
Hi Stacey,
Try this:
library(ROCR)
data(ROCR.simple)
pred <- prediction(ROCR.simple$predictions,ROCR.simple$labels)
perf <- performance(pred,"sens","spec")
cuts <- unlist(slot(perf,"alpha.values"))
cuts
HTH,
Jorge
On Thu, May 22, 2008 at 2:08 PM, Stacey Burrows <[EMAIL PROTECTED]>
wrote:
> Hi
2 matches
Mail list logo