Page 1 of 1

1 par menor al board (no boards doblados

PostPosted: Thu Aug 19, 2021 11:07 am
by plukhead
tourney_hand_player_combinations.flg_f_1pair
and tourney_hand_player_combinations.id_f_hand_strength = 1

hola necesito ayuda,hay alguna manera de separar los pockets menores al board con los boards doblados? ya que la opcion "0" incluye ambos

Re: 1 par menor al board (no boards doblados

PostPosted: Thu Aug 19, 2021 1:57 pm
by Flag_Hippo
Sorry that doesn't translate very well. Can you please explain in some more detail and give a specific example. Thank you.

Re: 1 par menor al board (no boards doblados

PostPosted: Thu Aug 19, 2021 3:04 pm
by plukhead
La expresión que subí contempla tanto pocketpar inferiores al board ej (33 en 47K)como también boards doblados ej (34 en 88Q)..
La pregunta es si hay alguna manera de separar escribir un expresión para usar en un expresión filter y poder filtrar por separado los pocket pars mencionados de los boards doblados

Re: 1 par menor al board (no boards doblados

PostPosted: Thu Aug 19, 2021 3:06 pm
by plukhead
tourney_hand_player_combinations.flg_f_1pair
y tourney_hand_player_combinations.id_f_hand_strength = 0

Perdon cometí un error en la expresión, la correcta sería esta. Gracias

Re: 1 par menor al board (no boards doblados

PostPosted: Thu Aug 19, 2021 3:17 pm
by plukhead
0 - Board Paired or low pocket pair (under the 3rd board card)
Necesito una expresión para board paired y otra para pocket pair (under the 3rd board card)
Es posible separarlas?

Re: 1 par menor al board (no boards doblados

PostPosted: Fri Aug 20, 2021 5:38 am
by Flag_Hippo
You can add a test for whether the player is actually holding a pocket pair or not:

Code: Select all
tourney_hand_player_statistics.id_holecard in (1,26,49,70,89,106,121,134,145,154,161,166,169)

Code: Select all
NOT tourney_hand_player_statistics.id_holecard in (1,26,49,70,89,106,121,134,145,154,161,166,169)

or you can test the flop so it is paired or not:

Code: Select all
((tourney_hand_summary.card_1  % 13 = tourney_hand_summary.card_2 % 13) OR (tourney_hand_summary.card_1  % 13 = tourney_hand_summary.card_3 % 13) OR (tourney_hand_summary.card_2  % 13 = tourney_hand_summary.card_3 % 13))

Code: Select all
NOT ((tourney_hand_summary.card_1  % 13 = tourney_hand_summary.card_2 % 13) OR (tourney_hand_summary.card_1  % 13 = tourney_hand_summary.card_3 % 13) OR (tourney_hand_summary.card_2  % 13 = tourney_hand_summary.card_3 % 13))

highfalutin