owen {TUvalues} | R Documentation |
Owen value
Description
Calculate the Owen value
Usage
owen(
characteristic_func,
union,
method = "exact",
n_rep = 10000,
n_players = 0
)
Arguments
characteristic_func |
The valued function defined on the subsets of the number of players. |
union |
List of vectors indicating the a priori unions between the players. |
method |
Method used to calculate the Owen value. Valid methods are:
|
n_rep |
Only used if |
n_players |
The number of players in the game. |
Value
The Owen value for each player.
Examples
n <- 10
v <- function(coalition) {
if (length(coalition) > n/2) {
return(1)
} else {
return(0)
}
}
u <- lapply(1:(n/2), function(i) c(2*i - 1, 2*i))
owen(v, union = u, method = "appro", n_rep = 4000, n_players = n)
characteristic_func <- c(1,1,2,1,2,2,2)
union <- list(c(1,2),c(3))
owen(characteristic_func, union)
owen(characteristic_func, union, method = "appro", n_rep = 4000)
[Package TUvalues version 1.0.0 Index]