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

Update table suppression when totals are true #160

Merged
merged 14 commits into from
Oct 3, 2023
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Changes:
* Update pandas version dependency to 1.5 ([#150](https://github.com/AI-SDC/ACRO/pull/150))
* Refactor ACRO class ([#152](https://github.com/AI-SDC/ACRO/pull/152))
* Adding support for table function in R ([#153](https://github.com/AI-SDC/ACRO/pull/153))
* Update table suppression when totals are true ([#160](https://github.com/AI-SDC/ACRO/pull/160))

## Version 0.4.2 (Jul 13, 2023)

Expand Down
1 change: 1 addition & 0 deletions acro/acro.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def __init__(self, config: str = "default", suppress: bool = False) -> None:
acro_tables.SAFE_NK_N = self.config["safe_nk_n"]
acro_tables.SAFE_NK_K = self.config["safe_nk_k"]
acro_tables.CHECK_MISSING_VALUES = self.config["check_missing_values"]
acro_tables.ZEROS_ARE_DISCLOSIVE = self.config["zeros_are_disclosive"]
# set globals for survival analysis
acro_tables.SURVIVAL_THRESHOLD = self.config["survival_safe_threshold"]

Expand Down
Loading