Description Usage Arguments Value Author(s) Examples
Create ROC plot from cross validation results
| 1 | 
| plot_data | dataframe with columns: response, prediction and method | 
| ... | additional commmands plot.roc such as main | 
returns ROC plot
Ben Sherwood <ben.sherwood@ku.edu>
| 1 2 3 4 5 6 7 8 9 | x <- matrix(rnorm(800),ncol=8)
y <- runif(100) < exp(1 + x[,1] + x[,5])/(1+exp(1 + x[,1] + x[,5]))
cv_results <- cv(x,y=y,method_name="without_formula")
combined_data <- data.frame(y=y,x1=x[,1],x5=x[,5])
gx <- x[,c(2,3,4,6,7,8)]
cvf <- cv(genomic_x=gx,clinical_formula=y~x1+x5,
			data=combined_data,method_name="with_form")
total_results <- rbind(cv_results,cvf)
rocplot(total_results,main="rocplot test")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.