Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐞use fractions.Fraction to avoid rounding error in probabilities sum #26

Merged
merged 3 commits into from
May 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/stochatreat/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# pragma: no cover
__version__ = "0.0.19"
__version__ = "0.0.20"
12 changes: 11 additions & 1 deletion src/stochatreat/stochatreat.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
"""Stratified random assignment of treatments to units.

This module provides a function to assign treatments to units in a
stratified manner. The function is designed to work with pandas
dataframes and is able to handle multiple strata. There are also different
strategies to deal with misfits (units that are left over after the
stratified assignment procedure).
"""

from __future__ import annotations

import math
from typing import Literal

import numpy as np
Expand Down Expand Up @@ -90,7 +100,7 @@ def stochatreat(
probs_np = np.array([frac] * len(treatment_ids))
elif probs is not None:
probs_np = np.array(probs)
if probs_np.sum() != 1:
if not math.isclose(probs_np.sum(), 1, rel_tol=1e-9):
error_msg = "The probabilities must add up to 1"
raise ValueError(error_msg)
if len(probs_np) != len(treatment_ids):
Expand Down
1 change: 1 addition & 0 deletions tests/test_assignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def df(request):
[0.5, 0.5],
[2 / 3, 1 / 3],
[0.9, 0.1],
[1 / 2, 1 / 3, 1 / 6],
]

# a set of stratum column combinations from the above df fixture to throw at
Expand Down