drawPrenucleolus {CoopGame} | R Documentation |
Draw prenucleolus for 3 or 4 players
Description
drawPrenucleolus draws the prenucleolus for 3 or 4 players.
Usage
drawPrenucleolus(
v,
holdOn = FALSE,
colour = NA,
label = TRUE,
name = "Prenucleolus"
)
Arguments
v |
Numeric vector of length 2^n - 1 representing the values of the coalitions of a TU game with n players |
holdOn |
draws in a existing plot |
colour |
draws the geometric object (i.e. point or convex polyhedron) with this colour, all colour names can be seen with "colors()" |
label |
activates the labels for the figure |
name |
set a name for the label |
Value
None.
Author(s)
Jochen Staudacher jochen.staudacher@hs-kempten.de
References
Peleg B. and Sudhoelter P. (2007) Theory of cooperative games, 2nd Edition, Springer, pp. 107–132
Examples
library(CoopGame)
v=c(0,0,0,1,1,0,3)
drawPrenucleolus(v)
#Visualization for estate division problem from Babylonian Talmud with E=200,
#see e.g. seminal paper by Aumann & Maschler from 1985 on
#'Game Theoretic Analysis of a Bankruptcy Problem from the Talmud'
library(CoopGame)
v<-bankruptcyGameVector(n=3,d=c(100,200,300),E=200)
drawPrenucleolus(v)
[Package CoopGame version 0.2.2 Index]