@@ -247,7 +247,6 @@ pandas 0.10.1
247
247
.. _GH2698 : https://github.com/pydata/pandas/issues/2698
248
248
.. _GH2699 : https://github.com/pydata/pandas/issues/2699
249
249
.. _GH2700 : https://github.com/pydata/pandas/issues/2700
250
- .. _GH2694 : https://github.com/pydata/pandas/issues/2694
251
250
.. _GH2686 : https://github.com/pydata/pandas/issues/2686
252
251
.. _GH2618 : https://github.com/pydata/pandas/issues/2618
253
252
.. _GH2592 : https://github.com/pydata/pandas/issues/2592
@@ -1389,7 +1388,7 @@ pandas 0.8.0
1389
1388
- Add ``order `` method to Index classes (GH1028 _)
1390
1389
- Avoid hash table creation in large monotonic hash table indexes (GH1160 _)
1391
1390
- Store time zones in HDFStore (GH1232 _)
1392
- - Enable storage of sparse data structures in HDFStore (#85 )
1391
+ - Enable storage of sparse data structures in HDFStore (GH85 _ )
1393
1392
- Enable Series.asof to work with arrays of timestamp inputs
1394
1393
- Cython implementation of DataFrame.corr speeds up by > 100x (GH1349 _, GH1354 _)
1395
1394
- Exclude "nuisance" columns automatically in GroupBy.transform (GH1364 _)
@@ -1596,6 +1595,7 @@ pandas 0.8.0
1596
1595
.. _GH1513 : https://github.com/pydata/pandas/issues/1513
1597
1596
.. _GH1533 : https://github.com/pydata/pandas/issues/1533
1598
1597
.. _GH1547 : https://github.com/pydata/pandas/issues/1547
1598
+ .. _GH85 : https://github.com/pydata/pandas/issues/85
1599
1599
1600
1600
1601
1601
pandas 0.7.3
@@ -1719,7 +1719,6 @@ pandas 0.7.2
1719
1719
1720
1720
- Add additional tie-breaking methods in DataFrame.rank (GH874 _)
1721
1721
- Add ascending parameter to rank in Series, DataFrame (GH875 _)
1722
- - Add coerce_float option to DataFrame.from_records (GH893 _)
1723
1722
- Add sort_columns parameter to allow unsorted plots (GH918 _)
1724
1723
- IPython tab completion on GroupBy objects
1725
1724
@@ -1741,7 +1740,7 @@ pandas 0.7.2
1741
1740
- Can select multiple hierarchical groups by passing list of values in .ix
1742
1741
(GH134 _)
1743
1742
- Add level keyword to ``drop `` for dropping values from a level (GH159 _)
1744
- - Add ``coerce_float `` option on DataFrame.from_records (# 893 )
1743
+ - Add ``coerce_float `` option on DataFrame.from_records (GH893 _ )
1745
1744
- Raise exception if passed date_parser fails in ``read_csv ``
1746
1745
- Add ``axis `` option to DataFrame.fillna (GH174 _)
1747
1746
- Fixes to Panel to make it easier to subclass (GH888 _)
@@ -1962,7 +1961,7 @@ pandas 0.7.0
1962
1961
exact matches for the labels are found or if the index is monotonic (for
1963
1962
range selections)
1964
1963
- Label-based slicing and sequences of labels can be passed to ``[] `` on a
1965
- Series for both getting and setting (GH #86 )
1964
+ Series for both getting and setting (GH86 _ )
1966
1965
- `[] ` operator (``__getitem__ `` and ``__setitem__ ``) will raise KeyError
1967
1966
with integer indexes when an index is not contained in the index. The prior
1968
1967
behavior would fall back on position-based indexing if a key was not found
@@ -1994,7 +1993,7 @@ pandas 0.7.0
1994
1993
- Don't print length by default in Series.to_string, add `length ` option (GH
1995
1994
GH489 _)
1996
1995
- Improve Cython code for multi-groupby to aggregate without having to sort
1997
- the data (GH #93 )
1996
+ the data (GH93 _ )
1998
1997
- Improve MultiIndex reindexing speed by storing tuples in the MultiIndex,
1999
1998
test for backwards unpickling compatibility
2000
1999
- Improve column reindexing performance by using specialized Cython take
@@ -2027,7 +2026,7 @@ pandas 0.7.0
2027
2026
- Improve DataFrame.to_string and console formatting to be more consistent in
2028
2027
the number of displayed digits (GH395 _)
2029
2028
- Use bottleneck if available for performing NaN-friendly statistical
2030
- operations that it implemented (GH #91 )
2029
+ operations that it implemented (GH91 _ )
2031
2030
- Monkey-patch context to traceback in ``DataFrame.apply `` to indicate which
2032
2031
row/column the function application failed on (GH614 _)
2033
2032
- Improved ability of read_table and read_clipboard to parse
@@ -2133,7 +2132,7 @@ pandas 0.7.0
2133
2132
- Use right dropna function for SparseSeries. Return dense Series for NA fill
2134
2133
value (GH730 _)
2135
2134
- Fix Index.format bug causing incorrectly string-formatted Series with
2136
- datetime indexes (# 726, 758 )
2135
+ datetime indexes (GH726 _, GH758 _ )
2137
2136
- Fix errors caused by object dtype arrays passed to ols (GH759 _)
2138
2137
- Fix error where column names lost when passing list of labels to
2139
2138
DataFrame.__getitem__, (GH662 _)
@@ -2303,6 +2302,10 @@ Thanks
2303
2302
.. _GH764 : https://github.com/pydata/pandas/issues/764
2304
2303
.. _GH770 : https://github.com/pydata/pandas/issues/770
2305
2304
.. _GH771 : https://github.com/pydata/pandas/issues/771
2305
+ .. _GH758 : https://github.com/pydata/pandas/issues/758
2306
+ .. _GH86 : https://github.com/pydata/pandas/issues/86
2307
+ .. _GH91 : https://github.com/pydata/pandas/issues/91
2308
+ .. _GH93 : https://github.com/pydata/pandas/issues/93
2306
2309
2307
2310
2308
2311
pandas 0.6.1
@@ -2492,15 +2495,15 @@ pandas 0.6.0
2492
2495
- Implement logical (boolean) operators &, |, ^ on DataFrame (GH347_)
2493
2496
- Add `Series.mad`, mean absolute deviation, matching DataFrame
2494
2497
- Add `QuarterEnd` DateOffset (GH321_)
2495
- - Add matrix multiplication function `dot` to DataFrame (GH #65 )
2498
+ - Add matrix multiplication function `dot` to DataFrame (GH65_ )
2496
2499
- Add `orient` option to `Panel.from_dict` to ease creation of mixed-type
2497
2500
Panels (GH359_, GH301_)
2498
2501
- Add `DataFrame.from_dict` with similar `orient` option
2499
2502
- Can now pass list of tuples or list of lists to `DataFrame.from_records`
2500
2503
for fast conversion to DataFrame (GH357_)
2501
2504
- Can pass multiple levels to groupby, e.g. `df.groupby(level=[0, 1])` (GH
2502
2505
GH103_)
2503
- - Can sort by multiple columns in `DataFrame.sort_index` (GH #92 , GH362_)
2506
+ - Can sort by multiple columns in `DataFrame.sort_index` (GH92_ , GH362_)
2504
2507
- Add fast `get_value` and `put_value` methods to DataFrame and
2505
2508
micro-performance tweaks (GH360_)
2506
2509
- Add `cov` instance methods to Series and DataFrame (GH194_, GH362_)
@@ -2705,6 +2708,8 @@ Thanks
2705
2708
.. _GH405 : https://github.com/pydata/pandas/issues/405
2706
2709
.. _GH408 : https://github.com/pydata/pandas/issues/408
2707
2710
.. _GH416 : https://github.com/pydata/pandas/issues/416
2711
+ .. _GH65 : https://github.com/pydata/pandas/issues/65
2712
+ .. _GH92 : https://github.com/pydata/pandas/issues/92
2708
2713
2709
2714
2710
2715
pandas 0.5.0
0 commit comments