powered by
This function computes the BSBT model loglikelihood function. It requires the deprivation levels and the win matrix.
loglike_function(x, win.matrix)
The value of of the loglikelihood function
The level of deprivation of the areas on an exponential scale
A matrix, where w_ij give the number of times object i beat j
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)
Run the code above in your browser using DataLab