| coalitions | R Documentation | 
Possible coalitions with n players.
coalitions(n)
| n | Number of players | 
This function gives the coalitions in a binary mode and usual way.
coalitions(3)
#$Binary
#     [,1] [,2] [,3]
#[1,]    0    0    0
#[2,]    1    0    0
#[3,]    0    1    0
#[4,]    0    0    1
#[5,]    1    1    0
#[6,]    1    0    1
#[7,]    0    1    1
#[8,]    1    1    1
#
#$Classic
#[1] "0"   "'{ 1 }'" "'{ 2 }'" "'{ 3 }'" "'{ 1,2 }'" "'{ 1,3 }'" "'{ 2,3 }'"  
#[8] "'{ 1,2,3 }'"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.