美文网首页
R 语言绘制ROC

R 语言绘制ROC

作者: Liam_ml | 来源:发表于2019-01-11 16:58 被阅读21次
    library("pROC")
    data(aSAH)
    # Build a ROC object and compute the AUC
    roc(aSAH$outcome, aSAH$s100b)
    

    绘图

    data(aSAH)
    # Build a ROC object and compute the AUC, draw ROC, print AUC and the best THRESHOLDS
    roc(aSAH$outcome, aSAH$s100b, plot=TRUE, print.thres=TRUE, print.auc=TRUE)
     
    
    米霖微信.PNG

    添加我的微信吧

    相关文章

      网友评论

          本文标题:R 语言绘制ROC

          本文链接:https://www.haomeiwen.com/subject/hoyxdqtx.html