Skip to main content

opponentShowdownBiasEstimate

Estimate showdown tendencies from observed hands.

opponentShowdownBiasEstimate(wentToShowdown: number, wonAtShowdown: number, hands: number): OpponentBiasResult

Import

const poker = require('poker-calculations');

ESM (Node):

import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const poker = require('poker-calculations');

When to use

Use opponentShowdownBiasEstimate when you need to estimate showdown tendencies from observed hands.

How to use

const poker = require('poker-calculations');
const result = poker.opponentShowdownBiasEstimate(1, 1, 7, 5);
console.log(result);

See also

bayesianRangeUpdateFromAction · NativeOpponentModel