1
- .. _whatsnew_090 :
1
+ .. _whatsnew_0900 :
2
2
3
3
v0.9.0 (September 25, 2012)
4
- ------------------------
4
+ ---------------------------
5
5
6
6
This is a major release from 0.8.1 and includes several new features and
7
7
enhancements along with a large number of bug fixes. New features include
8
8
vectorized unicode encoding/decoding for `Series.str`, `to_latex` method to
9
- DataFrame, more flexible parsing of boolean values, and enabling downloading
9
+ DataFrame, more flexible parsing of boolean values, and enabling the download of
10
10
options data from Yahoo! Finance.
11
11
12
12
New features
13
13
~~~~~~~~~~~~
14
14
15
- - Add ``str.encode`` and ``str.decode`` for unicode handling to
16
- :ref:`vectorized string processing methods <basics.string_methods>`
17
- in Series (GH1706_)
18
- - Add `DataFrame.to_latex` method (GH1735_)
15
+ - Add ``encode`` and ``decode`` for unicode handling to :ref:`vectorized
16
+ string processing methods <basics.string_methods>` in Series.str (GH1706_)
17
+ - Add ``DataFrame.to_latex`` method (GH1735_)
19
18
- Add convenient expanding window equivalents of all rolling_* ops (GH1785_)
20
19
- Add Options class to pandas.io.data for fetching options data from Yahoo!
21
20
Finance (GH1748_, GH1739_)
22
- - More flexible text parsing of boolean values (Yes, No, TRUE,
23
- FALSE, and variants thereof) (GH1691_, GH1295_)
21
+ - More flexible parsing of boolean values (Yes, No, TRUE, FALSE, etc)
22
+ (GH1691_, GH1295_)
24
23
25
24
API changes
26
25
~~~~~~~~~~~
27
26
28
27
- Deprecated ``day_of_year`` API removed from PeriodIndex, use ``dayofyear``
29
28
(GH1723_)
30
29
- Don't modify NumPy suppress printoption at import time
31
- - The internal HDF5 data arrangement for DataFrames has been
32
- transposed. Legacy files will still be readable by HDFStore
33
- (GH1834_, GH1824_)
30
+ - The internal HDF5 data arrangement for DataFrames has been transposed.
31
+ Legacy files will still be readable by HDFStore (GH1834_, GH1824_)
34
32
- Legacy cruft removed: pandas.stats.misc.quantileTS
35
33
- Use ISO8601 format for Period repr: monthly, daily, and on down (GH1776_)
36
34
- Empty DataFrame columns are now created as object dtype. This will prevent
@@ -39,8 +37,8 @@ API changes
39
37
results) (GH1783_)
40
38
- Setting parts of DataFrame/Panel using ix now aligns input Series/DataFrame
41
39
(GH1630_)
42
- - `first` and `last` methods in `GroupBy` no longer drop non-numeric columns
43
- (GH1809_)
40
+ - `` first`` and `` last`` methods in `` GroupBy`` no longer drop non-numeric
41
+ columns (GH1809_)
44
42
- Resolved inconsistencies in specifying custom NA values in text parser.
45
43
`na_values` of type dict no longer override default NAs unless
46
44
`keep_default_na` is set to false explicitly (GH1657_)
@@ -49,3 +47,19 @@ API changes
49
47
See the `full release notes
50
48
<https://github.com/pydata/pandas/blob/master/RELEASE.rst>`__ or issue tracker
51
49
on GitHub for a complete list.
50
+
51
+ .. _GH1706: https://github.com/pydata/pandas/issues/1706
52
+ .. _GH1735: https://github.com/pydata/pandas/issues/1735
53
+ .. _GH1785: https://github.com/pydata/pandas/issues/1785
54
+ .. _GH1748: https://github.com/pydata/pandas/issues/1748
55
+ .. _GH1739: https://github.com/pydata/pandas/issues/1739
56
+ .. _GH1691: https://github.com/pydata/pandas/issues/1691
57
+ .. _GH1295: https://github.com/pydata/pandas/issues/1295
58
+ .. _GH1723: https://github.com/pydata/pandas/issues/1723
59
+ .. _GH1834: https://github.com/pydata/pandas/issues/1834
60
+ .. _GH1824: https://github.com/pydata/pandas/issues/1824
61
+ .. _GH1776: https://github.com/pydata/pandas/issues/1776
62
+ .. _GH1783: https://github.com/pydata/pandas/issues/1783
63
+ .. _GH1630: https://github.com/pydata/pandas/issues/1630
64
+ .. _GH1809: https://github.com/pydata/pandas/issues/1809
65
+ .. _GH1657: https://github.com/pydata/pandas/issues/1657
0 commit comments