我想增加轴标签的大小。数据包含由ROCR绘制的ROC曲线。
library(ROCR)
# load the sample data and create an performance object
data(ROCR.hiv)
pp <- ROCR.hiv$hiv.svm$predictions
ll <- ROCR.hiv$hiv.svm$labels
par(mfrow=c(2,2))
pred<- prediction(pp, ll)
perf <- performance(pred, measure="tpr", x.measure = "fpr")
对图形工作的一些操作,其他操作,如设置cex.axis
,而不是。这是一个例子:
# try different manipulations
plot(perf) # normal layout
plot(perf, cex.axis=2) # no change
plot(perf, col.axis="red") # no change
plot(perf, col.main="red", cex.main=3, main="abc") # the header may be manipulated
似乎没有正确设置cex.axis
,因为
plot(perf, cex.axis=2)
par()
显示,
$cex.axis
[1] 1
任何想法? 谢谢!
答案 0 :(得分:0)
感谢rawr,我找到了答案:
par(cex.axis=2)
plot(perf)