Releases: pwwang/datar
Releases · pwwang/datar
0.3.1 (#24)
- Adopt
pipda
v0.4.0 - Change argument
_dtypes
todtypes_
for tibble-families
0.3.0 (#22)
- Adopt
pipda
v0.3.0
Breaking changes:
- Rename argument
dtypes
ofunchop
andunnest
back toptype
- Change all
_base0
tobase0_
- Change argument
how
oftidyr.drop_na
tohow_
0.2.3 (#21)
- Fix compatibility with
pandas
v1.2.0~4
(Fix #20, thanks to @antonio-yu) - Fix
base.table
when inputs are factors andexclude
isNA
; - Add
base.scale
/col_sums
/row_sums
/col_means
/row_means
/col_sds
/row_sds
/col_medians
/row_medians
0.2.2
- Use a better strategy warning for builtin name overriding.
- Fix index of subdf not dropped for mutate on grouped data
- Fix
names_glue
not working with singlevalues_from
fortidyr.pivot_wider
- Fix
base.paste
not registered - Fix
base.grep
/grepl
on NA values - Make
base.sub
/gsub
return scalar when inputs are scalar strings
0.2.1: Add all reference maps (#17)
- Use observed values for non-observed value match for group_data instead of NAs, which might change the dtype.
- Fix
tibble
recycling values too early
0.2.0
Added:
- Add
base.which
,base.bessel
,base.special
,base.trig_hb
andbase.string
modules - Add Support for duplicated keyword arguments for dplyr.mutate/summarise by using
_
as suffix - Warn when import python builtin names directly; ; Remove modkit dependency
Fixed:
- Fixed errors when use
a_1
as names for"check_unique"
name repairs - Fixed #14:
f.a.mean()
not applied to grouped data
Changed:
- Don't allow
from datar.datasets import *
- Remove
modkit
dependency - Reset
NaN
toNA
- Rename
base.getOption
tobase.get_option
- Rename
stats.setNames
tostats.set_names
0.1.1 (#13)
- Adopt
pipda
0.2.8 - Allow
f.col1[f.col2==max(f.col2)]
like expression - Add
base.which/cov/var
- Fix
base.max
- Add
datasets.ChickWeight
- Allow
dplyr.across
to have plain functions passed with defaultEVAL
context.
0.1.0 (#11)
Added:
pandas.NA
asNaN
- Dtypes display when printing a dataframe (string, html, notebook)
zibble
to construct dataframes with names specified together, and values together.
Fixed:
base.diag()
on dataframes- Data recycling when length is different from original data
datar.itemgetter()
not publicf.a.b
to access attributeb
off.a
Changed:
- Behavior of
group_by()
with_drop=False
. Invisible values will not mix with visible values of other columns - Default values_fn for pivot_wider to identity
0.0.7 (#10)
- Add dplyr rows verbs
- Allow mixed numbering (with
c()
andf[...]
) for tibble construction - Allow slice (
f[a:b]
) to be expanded into sequence forEVAL
context - Finish tidyr porting.
0.0.6: Merge pull request #9 from pwwang/dev
- Add
options
,getOption
andoptions_context
todatar.base
to allow set/get global options - Add options:
dplyr.summarise.inform
- Add
_base0
argument to all related APIs - Add
nycflights13
datasets - Support slice_head/slice_tail for grouped data