dotFullHouse: dotFullHouse

Description Usage Arguments Value See Also Examples

View source: R/poker.R

Description

Determine the player with the highest boat.

Usage

1
dotFullHouse(cards, score)

Arguments

cards

:

the 7 card hand as matrix[nPlayers, 14]
col1: rank of card 1 in {2, ... , 14}
col2: suit of card 1 in {1, 2, 3, 4}
col3: rank of card 2
col4: suit of card 2
.
.
.
col13: rank of card 7
col14: suit of card 7
score

:

the score of the hand in absolute terms as vector[nPlayers]
9 = Straight Flush
8 = Four of a Kind
7 = Full House
6 = Flush
5 = Straight
4 = Three of a Kind
3 = Two Pair
2 = One Pair
1 = High Card

Value

winner : absolute position of the winner as vector

See Also

dotFullHouseRanker

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
cards <- c(5,10,4,8,1,2,1,1,10,9,6,7,3,2,2,2,5,5,5,5,3,3,3,3,8,8,8,8,3,3,3,3)
cards <- c(cards,14,14,14,14,2,2,2,2,14,14,14,14,3,3,3,3,14,14,14,14,4,4,4,4)
cards <- matrix(cards,nrow=4,ncol=14); cards
score <- showdown(cards); score
dotFullHouse(cards,score)

cards <- c(5,10,4,8,1,2,1,1,10,9,6,7,3,2,2,2,12,12,12,12,1,1,1,1,12,12,12,12,3,3,3,3)
cards <- c(cards,14,14,14,14,2,2,2,2,14,14,14,14,3,3,3,3,14,14,14,14,4,4,4,4)
cards <- matrix(cards,nrow=4,ncol=14); cards
score <- showdown(cards); score
dotFullHouse(cards,score)

Example output

     [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12] [,13] [,14]
[1,]    5    1   10    3    5    3    8    3   14     2    14     3    14     4
[2,]   10    2    9    2    5    3    8    3   14     2    14     3    14     4
[3,]    4    1    6    2    5    3    8    3   14     2    14     3    14     4
[4,]    8    1    7    2    5    3    8    3   14     2    14     3    14     4
[1] 7 4 4 7
[1] 4
     [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12] [,13] [,14]
[1,]    5    1   10    3   12    1   12    3   14     2    14     3    14     4
[2,]   10    2    9    2   12    1   12    3   14     2    14     3    14     4
[3,]    4    1    6    2   12    1   12    3   14     2    14     3    14     4
[4,]    8    1    7    2   12    1   12    3   14     2    14     3    14     4
[1] 7 7 7 7
[1] 1 2 3 4

poker documentation built on May 2, 2019, 3:45 a.m.

Related to dotFullHouse in poker...