Bayesian histograms for estimation of binary event rates
Project description
Bayesian histograms
Bayesian histograms are a nifty tool for data mining if:
- you want to know how the event rate (probability) of a binary rare event depends on a parameter;
- you have millions or even billions of data points, but few positive samples;
- you suspect the event rate depends highly non-linearly on the parameter;
- you don't know whether you have enough data, so you need uncertainty information.
Thanks to an adaptive bin pruning algorithm, you don't even have to choose the number of bins, and you should get good results out of the box.
This is how they look in practice (see full example below):
Installation
$ pip install bayeshist
Usage example
Assume you have binary samples of a rare event like this:
Compute and plot a Bayesian histogram:
>>> from bayeshist import bayesian_histogram, plot_bayesian_histogram
# compute Bayesian histogram from samples
>>> bin_edges, beta_dist = bayesian_histogram(X, y, bins=100, pruning_method="bayes")
# beta_dist is a `scipy.stats.Beta` object, so we can get the
# predicted mean event rate for each histogram bin like this:
>>> bin_mean_pred = best_dist.mean()
# plot it up
>>> plot_bayesian_histogram(bin_edges, beta_dist)
The result is something like this:
See also demo.ipynb for a full walkthrough of this example.
But how do they work?
API reference
bayesian_histogram
def bayesian_histogram(
x: np.ndarray,
y: np.ndarray,
bins: Union[int, Iterable] = 100,
x_range: Optional[Tuple[float, float]] = None,
prior_params: Optional[Tuple[float, float]] = None,
pruning_method: Optional[Literal["bayes", "fisher"]] = "bayes",
pruning_threshold: Optional[float] = None,
max_bin_size: Optional[float] = None,
) -> Tuple[np.ndarray, FrozenDistType]:
"""Compute Bayesian histogram for data x, binary target y.
The output is a Beta distribution over the event rate for each bin.
Parameters:
x:
1-dim array of data.
y:
1-dim array of binary labels (0 or 1).
bins:
int giving the number of equally spaced intial bins,
or array giving initial bin edges. (default: 100)
x_range:
Range spanned by binning. Not used if `bins` is an array.
(default: [min(x), max(x)])
prior_params:
Parameters to use in Beta prior. First value relates to positive,
second value to negative samples. [0.5, 0.5] represents Jeffrey's prior, [1, 1] a flat
prior. The default is a weakly informative prior based on the global event rate.
(default: `[1, num_neg / num_pos]`)
pruning_method:
Method to use to decide whether neighboring bins should be merged or not.
Valid values are "bayes" (Bayes factor), "fisher" (exact Fisher test), or None
(no pruning). (default: "bayes")
pruning_threshold:
Threshold to use in significance test specified by `pruning_method`.
(default: 2 for "bayes", 0.2 for "fisher")
max_bin_size:
Maximum size (in units of x) above which bins will not be merged
(except empty bins). (default: unlimited size)
Returns:
bin_edges: Coordinates of bin edges
beta_dist: n-dimensional Beta distribution (n = number of bins)
Example:
>>> x = np.random.randn(1000)
>>> p = 10 ** (-2 + x)
>>> y = np.random.rand() < p
>>> bins, beta_dist = bayesian_histogram(x, y)
>>> plt.plot(0.5 * (bins[1:] + bins[:-1]), beta_dist.mean())
"""
plot_bayesian_histogram
def plot_bayesian_histogram(
bin_edges: np.ndarray,
data_dist: FrozenDistType,
color: Union[str, Iterable[float], None] = None,
label: Optional[str] = None,
ax: Any = None,
ci: Optional[Tuple[float, float]] = (0.01, 0.99)
) -> None:
"""Plot a Bayesian histogram as horizontal lines with credible intervals.
Parameters:
bin_edges:
Coordinates of bin edges
data_dist:
n-dimensional Beta distribution (n = number of bins)
color:
Color to use (default: use next in current color cycle)
label:
Legend label (default: no label)
ax:
Matplotlib axis to use (default: current axis)
ci:
Credible interval used for shading, use `None` to disable shading.
Example:
>>> x = np.random.randn(1000)
>>> p = 10 ** (-2 + x)
>>> y = np.random.rand() < p
>>> bins, beta_dist = bayesian_histogram(x, y)
>>> plot_bayesian_histogram(bins, beta_dist)
"""
Questions?
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
bayeshist-0.2.tar.gz
(6.8 kB
view details)
File details
Details for the file bayeshist-0.2.tar.gz
.
File metadata
- Download URL: bayeshist-0.2.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be562e6d72b6c92947d4631442466cb7b2099921850d1afbdafa8d5fa9fe49e8 |
|
MD5 | 55ed8138caae19eba0926da8d4cbf3d4 |
|
BLAKE2b-256 | e1dcfb5cb471a0b3f6166aae665cf0c976fd3b8a92572473ab6f4d297a2d77cb |