@@ -21,6 +21,11 @@ New features
21
21
- More flexible parsing of boolean values (Yes, No, TRUE, FALSE, etc)
22
22
(GH1691_, GH1295_)
23
23
- Add ``level`` parameter to ``Series.reset_index``
24
+ - ``TimeSeries.between_time`` can now select times across midnight (GH1871_)
25
+ - Series constructor can now handle generator as input (GH1679_)
26
+ - ``DataFrame.dropna`` can now take multiple axes (tuple/list) as input
27
+ (GH924_)
28
+ - Enable ``skip_footer`` parameter in ``ExcelFile.parse`` (GH1843_)
24
29
25
30
API changes
26
31
~~~~~~~~~~~
@@ -43,6 +48,8 @@ API changes
43
48
- Resolved inconsistencies in specifying custom NA values in text parser.
44
49
`na_values` of type dict no longer override default NAs unless
45
50
`keep_default_na` is set to false explicitly (GH1657_)
51
+ - DataFrame.dot will not do data alignment, and also work with Series
52
+ (GH1915_)
46
53
47
54
48
55
See the `full release notes
@@ -64,3 +71,8 @@ on GitHub for a complete list.
64
71
.. _GH1630: https://github.com/pydata/pandas/issues/1630
65
72
.. _GH1809: https://github.com/pydata/pandas/issues/1809
66
73
.. _GH1657: https://github.com/pydata/pandas/issues/1657
74
+ .. _GH1871: https://github.com/pydata/pandas/issues/1871
75
+ .. _GH1679: https://github.com/pydata/pandas/issues/1679
76
+ .. _GH1915: https://github.com/pydata/pandas/issues/1915
77
+ .. _GH924: https://github.com/pydata/pandas/issues/924
78
+ .. _GH1843: https://github.com/pydata/pandas/issues/1843
0 commit comments