Learn R Programming

BSBT (version 1.2.1)

loglike_function: Compute the loglikelihood function

Description

This function computes the BSBT model loglikelihood function. It requires the deprivation levels and the win matrix.

Usage

loglike_function(x, win.matrix)

Value

The value of of the loglikelihood function

Arguments

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

Examples

Run this code

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