View source: R/mcmc_functions.R
loglike_function | R Documentation |
This function computes the BSBT model loglikelihood function. It requires the deprivation levels and the win matrix.
loglike_function(x, win.matrix)
x |
The level of deprivation of the areas on an exponential scale |
win.matrix |
A matrix, where w_ij give the number of times object i beat j |
The value of of the loglikelihood function
win.matrix <- matrix(c(0, 3, 2, 1, 0, 1, 1, 3, 0), 3, 3) #construct win matrix lambda <- c(3, 1, 2) l <- loglike_function(lambda, win.matrix)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.