We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f41f663 + a679fcf commit ea5b300Copy full SHA for ea5b300
1 file changed
R/04-test_classifier.R
@@ -359,13 +359,13 @@ plot.lqasSim <- function(x, ...) {
359
360
plot(
361
x = c(x$dLower, x$dUpper),
362
- y = c(0, 1),
+ y = c(0, 100),
363
pch = "",
364
xlab = "Indicator Proportion (%)",
365
ylab = "Probability of Classification",
366
frame.plot = FALSE,
367
- xlim = c(x$pLower, x$pUpper),
368
- ylim = c(0, 1)
+ xlim = c(x$pLower * 100, x$pUpper * 100),
+ ylim = c(0, 100)
369
)
370
371
points(p, z[ , 1], pch = 6, cex= 0.5, col = "gray")
@@ -376,8 +376,8 @@ plot.lqasSim <- function(x, ...) {
376
lines(lowess(p, z[ , 2], f = 0.02), col = "orange", lwd = 2)
377
lines(lowess(p, z[ , 3], f = 0.02), col = "green", lwd = 2)
378
379
- abline(v = x$dLower, lty = 3)
380
- abline(v = x$dUpper, lty = 3)
+ abline(v = x$dLower * 100, lty = 3)
+ abline(v = x$dUpper * 100, lty = 3)
381
382
legend(
383
x = "bottomright",
0 commit comments