v0.3.2
This is the release notes of v0.3.2. See here for the complete list of solved issues and merged PRs.
New Features
- DataFrame
- Implement md.{
cummax
,cummin
,cumprod
,cumsum
} (#1022) - Add support for
md.fillna
(#1031) - Add
DataFrame.loc
support (#1060) - Add
DataFrame.rolling
support (#1061) - Add support for GroupBy.{
cumcount
,cummin
,cummax
,cumprod
,cumsum
} (#1072) - Support string and datetime methods via
Series.str
andSeries.dt
accessor (#1074) - Implement dataframe
append
(#1075) - Implement
DataFrame.concat
andSeries.concat
(#1078) - Add support for DataFrame.sort_values (#1081)
- Support
sort_index
for DataFrame and Series (#1082) - Add
md.date_range
support (#1086) - Logical operators on DataFrame and Series. (#1088)
- Implements
head
/tail
based oniloc
, and fixes bug ingetitem
. (#1089)
- Implement md.{
Enhancements
- Use
mapjoin
to optimize df.merge (#1023) - Refactor tiling of
DataFrame.iloc
withindex_lib
(#1043) - Add
sort_range_index
parameter in readcsv (#1067)
Bug fixes
- Standardize RangeIndex for unknown shape DataFrame (#1066)
- Fix failed cases in distributed mode (#1079)
- Fix wrong dtypes in df.rechunk (#1083)
- Fix consistency between tensor metadata and real outputs (#1087)
Tests
- Fix tests under Python 3.6 as VS2015 is preinstalled (#1015)