- ⬆️ Bump datar-pandas to 0.5.2 to fix `pip install datar[pandas]` not having numpy backend installed.
0.15.1
- ⬆️ Bump datar-pandas to 0.5.1 - Dismiss ast warning for if_else. - Make scipy and wcwidth optional deps - Set seed in tests - Dismiss warnings of fillna with method for pandas2.1
0.15.0
- ✨ Add data who2, household, cms_patient_experience, and cms_patient_care - ⬆️ Bump datar-pandas to 0.5 to support pandas2 (186)
0.14.0
- ⬆️ Bump pipda to 0.13 - 🍱 Support dplyr up to 1.1.3 - 👽️ Align `rows_*()` verbs to align with dplyr 1.1.3 (188) - 🔧 Update pyproject.toml to generate setup.py for poetry
0.13.1
- 🎨 Allow `datar.all.filter` regardless of `allow_conflict_names` (184)
0.13.0
- 👷 Add scripts for codesandbox - 💥 Change the option for conflict names (184)
There is no more warning for conflict names (python reserved names). By default, those names are suffixed with `_` (ie `filter_` instead of `filter`). You can still use the original names by setting `allow_conflict_names` to `True` in `datar.options()`.
python from datar import options options(allow_conflict_names=True) from datar.all import * filter <function datar.dplyr.filter_ at 0x7f62303c8940>