pROC ROC curves remove empty space

后端 未结 3 977
故里飘歌
故里飘歌 2020-12-03 23:47

I want to draw ROC curves with pRoC. However for some reason there is extra empty space on either side of the x-axis and I cannot remove it with xlim. Some example code:

3条回答
  •  孤城傲影
    2020-12-04 00:43

    Make sure the plotting device is square and adjust the margins so that top + bottom == left + right:

    library(pROC)
    png("test.png", width = 480, height = 480)
    par(mar = c(4, 4, 4, 4)+.1)
    n = c(4, 3, 5) 
    b = c(TRUE, FALSE, TRUE)
    rocobj <- plot.roc(b, n, percent = TRUE, main="ROC", col="#1c61b6", add=FALSE)
    dev.off()
    

提交回复
热议问题