anova.PlackettLuce {gosset} | R Documentation |
Likelihood-ratio test
Description
Assesses the goodness of fit of competing statistical models
Usage
## S3 method for class 'PlackettLuce'
anova(object, ...)
likelihood_ratio(x, split, ...)
Arguments
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 |
Author(s)
Joost van Heerwaarden and KauĂȘ de Sousa
Examples
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)
[Package gosset version 1.3 Index]