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
_
(iefilter_
instead offilter
). You can still use the original names by settingallow_conflict_names
toTrue
indatar.options()
.from datar import options options(allow_conflict_names=True) from datar.all import * filter # <function datar.dplyr.filter_ at 0x7f62303c8940>
Full Changelog: 0.12.2...0.13.0