Do not want scientific notation on plot axis again

13 views Asked by At

When I draw the ROC curve with the following code, the x-axis values are still in scientific notation form, e.g. 0.2 behaves as 2e-01: options(scipen = 1) options(digits = 1) plot(rocmodelTDF,print.auc=TRUE,print.thres=TRUE,main="ROC CURVE",legacy.axes=TRUE,col="#CC6666",print.thres.col="#CC6666",identity.col="black",identity.lty=1,identity.lwd=1)

No matter what I do to change the options parameter, I can't solve the problem. I want my x-axis to be in decimal places

0

There are 0 answers