View source: R/likelihood_ratio.R
anova.PlackettLuce | R Documentation |
Assesses the goodness of fit of competing statistical models
## S3 method for class 'PlackettLuce'
anova(object, ...)
likelihood_ratio(x, split, ...)
object |
an object of class PlackettLuce |
... |
additional arguments passed to methods |
x |
an object of class rankings or grouped_rankings |
split |
a vector indicating the splitting rule for the test |
Joost van Heerwaarden and Kauê de Sousa
library("PlackettLuce")
example("beans", package = "PlackettLuce")
G = group(R, rep(seq_len(nrow(beans)), 4))
d = cbind(G, beans)
split = ifelse(d$maxTN < 18.7175, TRUE, FALSE)
likelihood_ratio(G, split)
mod = PlackettLuce(G)
anova(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.