plot.hce | R Documentation |
hce
objectsOrdinal dominance graph for hce
objects
## S3 method for class 'hce'
plot(x, fill = FALSE, ...)
x |
an object of class |
fill |
logical; if |
... |
additional arguments to be passed to |
no return value, called for plotting.
Bamber D. "The area above the ordinal dominance graph and the area below the receiver operating characteristic graph." Journal of Mathematical Psychology 12.4 (1975): 387-415. doi:10.1016/0022-2496(75)90001-2
d <- as_hce(KHCE)
d$TRTP <- factor(d$TRTP, levels = c("P", "A"))
res <- calcWO(AVAL ~ TRTP, data = d)
# Ordinal Dominance Graph
plot(d, col = 3, type = 'l')
grid()
# Area above the Ordinal Dominance Graph
plot(d, fill = TRUE, col = "#865A4F", type = 'l',
lwd = 2, xlab = "Control", ylab = "Active")
legend("bottomright", legend = paste0("WP = ", round(res$WP, 5)))
abline(a = 0, b = 1, lwd = 2, lty = 2, col = "#999999")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.