- `tidyselect` is introduced in a few verbs (methods) which support `start_with`, `ends_with` and `contains`. - `summarise` now supports returning an iterable within a list as a output, no longer restricts the output to a scalar.
0.2.6
- pivot_wider gains a new argument `id_expand` (False by default)
0.2.5
- slice_max and slice_min are rewritten to avoid pandas apply and using pandas.groupbBy.Series.rank, thereby being fast for larger datasets.
0.2.4
- tidyframe drops row indexes when constructed using a pandas dataframe - User is expected to run tidypandas.tidy_utils.simplify() beforehand to handle complicated pandas dataframe input
0.2.3
- bugfix: show proper error message when tidyframe cannot be created from pandas dataframe with some column starting with underscore - bugfix: tidyframe.separate now handles NAs
0.2.2
- minor bug in _is_kwargable is fixed, making mutate better - minor bug in filter with mask is fixed - CI is enabled with github actions