title
stringlengths
1
185
diff
stringlengths
0
32.2M
body
stringlengths
0
123k
url
stringlengths
57
58
created_at
stringlengths
20
20
closed_at
stringlengths
20
20
merged_at
stringlengths
20
20
updated_at
stringlengths
20
20
COMPAT: compat for dateutil 2.5.0 and differing dayfirst=True & yearf…
diff --git a/pandas/tseries/tests/test_tslib.py b/pandas/tseries/tests/test_tslib.py index f0d5bf7e046c3..863bc6f630d06 100644 --- a/pandas/tseries/tests/test_tslib.py +++ b/pandas/tseries/tests/test_tslib.py @@ -589,23 +589,62 @@ def test_parsers_quarter_invalid(self): self.assertRaises(ValueError, tools....
closes #12730
https://api.github.com/repos/pandas-dev/pandas/pulls/12731
2016-03-29T14:32:03Z
2016-03-29T17:29:48Z
2016-03-29T17:29:48Z
2016-03-29T17:29:48Z
Fix pandas.Timedelta range
diff --git a/doc/source/gotchas.rst b/doc/source/gotchas.rst index fe7ab67b7f759..490b593b4c9c2 100644 --- a/doc/source/gotchas.rst +++ b/doc/source/gotchas.rst @@ -356,27 +356,6 @@ such as ``numpy.logical_and``. See the `this old issue <https://github.com/pydata/pandas/issues/2388>`__ for a more detailed discussion....
- [x] closes #12727 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry _Problem_ Pandas Timedelta derives from `datetime.timedelta` and increase the resolution of the timedeltas. As such the Pandas.Timedelta object can only have a smaller range of values. _Solution...
https://api.github.com/repos/pandas-dev/pandas/pulls/12728
2016-03-29T07:28:44Z
2016-03-31T13:24:07Z
null
2016-03-31T13:24:43Z
Omit tests folders from coverage
diff --git a/.coveragerc b/.coveragerc index 5b264a626abfa..3f630aa6cf8f5 100644 --- a/.coveragerc +++ b/.coveragerc @@ -1,6 +1,7 @@ # .coveragerc to control coverage.py [run] branch = False +omit = */tests/* [report] # Regexes for lines to exclude from consideration @@ -23,4 +24,4 @@ exclude_lines = ignore_err...
xref #12634
https://api.github.com/repos/pandas-dev/pandas/pulls/12721
2016-03-27T21:27:10Z
2016-03-31T13:43:09Z
null
2016-04-10T22:35:07Z
Convert badge list into Markdown table in README.md
diff --git a/README.md b/README.md index 3b7032321fbcf..eab9dc89003ee 100644 --- a/README.md +++ b/README.md @@ -5,60 +5,18 @@ # pandas: powerful Python data analysis toolkit -<table> -<tr> - <td>Latest Release</td> - <td><img src="https://img.shields.io/pypi/v/pandas.svg" alt="latest release" /></td> -</tr> - ...
- [ ] closes #xxxx - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry Also correct some badge links
https://api.github.com/repos/pandas-dev/pandas/pulls/12719
2016-03-26T15:30:13Z
2016-04-01T13:17:54Z
null
2016-04-01T13:17:58Z
Raising TypeError on invalid window when using .rolling #12669
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index e6ea9217347ea..bbbb31ea48ed5 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -169,3 +169,4 @@ Bug Fixes - Bug in ``pivot_table`` when ``margins=True`` and ``dropna=True`` where nulls still contr...
- [x] closes #12669 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12718
2016-03-26T13:29:24Z
2016-04-26T22:54:53Z
null
2016-04-26T22:54:53Z
COMPAT: make read_excel accept path objects for the filepath (#12655)
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 1179a347e4c46..2888dd92d2fff 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -169,3 +169,4 @@ Bug Fixes - Bug in ``pivot_table`` when ``margins=True`` and ``dropna=True`` where nulls still contrib...
- [x] closes #12655 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Fairly simple fix overall, since `get_filepath_or_buffer` is already set up to just convert the path objs to string, we can do that first and then just let the existing logic handle it. Since th...
https://api.github.com/repos/pandas-dev/pandas/pulls/12717
2016-03-26T11:35:05Z
2016-04-01T13:02:56Z
null
2016-04-01T13:03:09Z
Allow float window when using .rolling
diff --git a/pandas/core/window.py b/pandas/core/window.py index 31874a96f8111..ec20d5c006f1b 100644 --- a/pandas/core/window.py +++ b/pandas/core/window.py @@ -124,6 +124,24 @@ def _dir_additions(self): def _get_window(self, other=None): return self.window + def _prep_window(self, **kwargs): + ...
- [ ] closes #12669 - [ ] tests added - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry https://github.com/pydata/pandas/issues/12669
https://api.github.com/repos/pandas-dev/pandas/pulls/12714
2016-03-25T00:37:09Z
2016-04-10T17:31:05Z
null
2016-04-10T22:35:24Z
BUG: Bug in groupby.transform(..) when axis=1 is specified with a non_monotonic indexer
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index c9cd09cba0b39..f82a18f50063a 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -118,7 +118,7 @@ Performance Improvements Bug Fixes ~~~~~~~~~ - ``usecols`` parameter in ``pd.read_csv`` is now respe...
https://api.github.com/repos/pandas-dev/pandas/pulls/12713
2016-03-24T21:22:04Z
2016-03-25T12:54:42Z
null
2016-03-25T12:54:42Z
Validate that float_format option is callable
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 7843cb24b7686..714a0cf19d14a 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -124,6 +124,7 @@ Bug Fixes - Bug in numpy compatibility of ``np.round()`` on a ``Series`` (:issue:`12600`) - Bug in ``...
- [x] closes #12706 - [ ] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12711
2016-03-24T16:12:47Z
2016-03-26T00:32:57Z
null
2016-03-28T12:20:14Z
WIP/API: Implemented NDFrame.argsort() and NDFrame.ordering().
diff --git a/doc/source/api.rst b/doc/source/api.rst index d6402100a296f..3abbb5920c1bc 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -398,8 +398,9 @@ Reshaping, sorting .. autosummary:: :toctree: generated/ - Series.argsort Series.reorder_levels + Series.argsort + Series.ordering Ser...
... still a work in progress
https://api.github.com/repos/pandas-dev/pandas/pulls/12707
2016-03-24T05:44:18Z
2016-03-24T14:56:53Z
null
2016-03-24T19:49:13Z
BUG: concatenation with a coercable dtype was too aggressive
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index e664020946baf..1ac95c3ea6195 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -122,6 +122,7 @@ Bug Fixes - Bug in printing data which contains ``Period`` with different ``freq`` raises ``ValueError...
closes #12411 closes #12045 closes #11594 closes #10571
https://api.github.com/repos/pandas-dev/pandas/pulls/12702
2016-03-23T16:59:58Z
2016-03-23T17:56:45Z
null
2016-03-23T17:56:45Z
Fix #12564 for Categorical: consistent result if comparing as DataFrame
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index f20b961455ba7..dc50eb94f7120 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -207,7 +207,9 @@ Bug Fixes - Bug in ``pivot_table`` when ``margins=True`` and ``dropna=True`` where nulls still con...
- [x] closes #12564 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12698
2016-03-23T01:44:16Z
2016-04-03T14:06:01Z
null
2016-04-08T12:27:52Z
Fix #12695 : RangeIndex generated with pd.concat with ignore_index as True
diff --git a/pandas/tools/merge.py b/pandas/tools/merge.py index 82fdf0a3d3b46..dd5398af7eb7f 100644 --- a/pandas/tools/merge.py +++ b/pandas/tools/merge.py @@ -992,7 +992,7 @@ def get_result(self): # names (because set via the 'key' argument in the 'concat' # function call. If that's ...
- [x] closes #12695 - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry Replaced generated indexes with RangeIndex, test still needed
https://api.github.com/repos/pandas-dev/pandas/pulls/12696
2016-03-22T20:52:36Z
2016-04-10T14:22:42Z
null
2016-08-31T00:52:25Z
Fix typos
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index dc82852f4661e..b2c90bd1c38b8 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -3624,7 +3624,7 @@ def combine(self, other, func, fill_value=None, overwrite=True): other_mask = isnull(otherSeries) # don't overwrite c...
https://api.github.com/repos/pandas-dev/pandas/pulls/12692
2016-03-22T15:58:55Z
2016-03-22T16:13:59Z
null
2016-03-22T16:14:03Z
Fix : 9784 Added the note for display.max_colwidth in dsintro.rst
diff --git a/doc/source/dsintro.rst b/doc/source/dsintro.rst index d674ee293e4ed..927cabb9cbd71 100644 --- a/doc/source/dsintro.rst +++ b/doc/source/dsintro.rst @@ -720,6 +720,21 @@ option: pd.DataFrame(np.random.randn(3, 12)) +Note : You can also adjust the max width of the individual columns by using `display...
- [x] closes #9784 - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12682
2016-03-21T12:45:47Z
2016-04-04T16:52:39Z
null
2016-04-04T16:52:56Z
API: Index.take inconsistently handle fill_value
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 1179a347e4c46..486d7f3a067bc 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -29,7 +29,6 @@ New features Enhancements ~~~~~~~~~~~~ - .. _whatsnew_0181.partial_string_indexing: Partial strin...
- [x] closes #12631 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12676
2016-03-20T15:31:10Z
2016-03-31T13:38:15Z
null
2016-03-31T13:40:47Z
BUG: .describe lost CategoricalIndex info
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index e6ea9217347ea..55750fe5700c6 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -160,8 +160,6 @@ Bug Fixes - - - Bug in ``concat`` raises ``AttributeError`` when input data contains tz-aware da...
- [x] closes #11558 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry #11558 is partially fixed by #12531, this PR let `.describe()` to preserve `CategoricalIndex` info. And added explicit test cases derived from #11558.
https://api.github.com/repos/pandas-dev/pandas/pulls/12675
2016-03-20T12:06:58Z
2016-03-29T20:09:45Z
null
2016-03-29T20:23:35Z
Fixed #12651: providing links to the .expanding in .cum*
diff --git a/doc/source/basics.rst b/doc/source/basics.rst index 1e30921e7248f..aad36fa5bbdaa 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -466,6 +466,8 @@ preserve the location of NA values: df.cumsum() +Please see :ref:`expanding <stats.moments.expanding>` + Here is a quick reference sum...
- [ x] closes #12561 - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry #12561 : wrote the `.expanding` function int the `basics.rst`
https://api.github.com/repos/pandas-dev/pandas/pulls/12674
2016-03-20T09:22:49Z
2016-03-20T15:28:55Z
null
2016-03-20T16:43:08Z
Fixed #12651: providing links to the .cum* in .expanding
diff --git a/doc/source/computation.rst b/doc/source/computation.rst index d247f79c00a46..aff679c4b1ed7 100644 --- a/doc/source/computation.rst +++ b/doc/source/computation.rst @@ -578,6 +578,7 @@ they are implemented in pandas such that the following two calls are equivalent: df.expanding(min_periods=1).mean()[:5]...
- [x] closes #12651 - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry #12651 commit for the .cum\* in .expanding
https://api.github.com/repos/pandas-dev/pandas/pulls/12673
2016-03-20T09:10:34Z
2016-05-07T18:51:30Z
null
2016-05-07T18:51:30Z
DOC: Fix `xarray` broken link
diff --git a/doc/source/install.rst b/doc/source/install.rst index f0e6955f38612..a7abf4ce54fb9 100644 --- a/doc/source/install.rst +++ b/doc/source/install.rst @@ -244,7 +244,7 @@ Optional Dependencies * `Cython <http://www.cython.org>`__: Only necessary to build development version. Version 0.19.1 or higher. * `...
[skip ci]
https://api.github.com/repos/pandas-dev/pandas/pulls/12672
2016-03-20T08:04:07Z
2016-03-20T14:48:49Z
null
2016-03-20T15:17:52Z
Fixed #12661: more clarification in the where statement
diff --git a/doc/source/10min.rst b/doc/source/10min.rst index d51290b2a983b..46f3b44055571 100644 --- a/doc/source/10min.rst +++ b/doc/source/10min.rst @@ -282,7 +282,14 @@ Using a single column's values to select data. df[df.A > 0] -A ``where`` operation for getting. +A ``where`` is an attribute of the DataFr...
- [x] closes #12661 - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry Improvement in the documentation w.r.t to issue #12661
https://api.github.com/repos/pandas-dev/pandas/pulls/12671
2016-03-20T06:55:34Z
2016-05-13T23:36:43Z
null
2016-05-13T23:36:43Z
ENH: xz compression in to_csv() resolves #11852
diff --git a/ci/requirements-2.7.pip b/ci/requirements-2.7.pip index 9334ca9e03cc1..cc3462dbf9ed0 100644 --- a/ci/requirements-2.7.pip +++ b/ci/requirements-2.7.pip @@ -4,4 +4,5 @@ google-api-python-client==1.2 python-gflags==2.0 oauth2client==1.5.0 pathlib +backports.lzma py diff --git a/doc/source/install.rst b/d...
- [x] closes #11852 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12668
2016-03-18T20:26:34Z
2016-03-23T20:38:17Z
null
2016-03-23T20:38:52Z
Updated docstring for copy() method
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 24b883b90cf5d..d2379942de121 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -2952,7 +2952,13 @@ def copy(self, deep=True): Parameters ---------- deep : boolean or string, default True - Make a d...
- [x] closes #12663 Added note that a copy with `deep=True` does not copy the data of objects contained in underlying arrays with `dtype=object`.
https://api.github.com/repos/pandas-dev/pandas/pulls/12664
2016-03-18T04:48:50Z
2016-03-23T17:36:38Z
null
2016-03-23T17:36:49Z
BUG: fixed SAS7BDATReader._get_properties
diff --git a/pandas/io/sas/sas7bdat.py b/pandas/io/sas/sas7bdat.py index e068c51df585d..47552e2eee0f6 100644 --- a/pandas/io/sas/sas7bdat.py +++ b/pandas/io/sas/sas7bdat.py @@ -327,12 +327,13 @@ def _get_properties(self): _os_version_number_length) self.os_version = buf.rstrip(b...
this fixes a crasher I had in one of my files using SAS7BDATReader. cc: @kshedden self._path_or_buf.read is an obvious mistake also added + total_align to _os_name_offset and _os_make_offset as they are present in the original code from Jared Hobbs: https://bitbucket.org/jaredhobbs/sas7bdat/src/da1faa90d0b15c2c97a2...
https://api.github.com/repos/pandas-dev/pandas/pulls/12658
2016-03-17T13:30:36Z
2016-04-22T15:14:34Z
null
2016-04-22T15:14:34Z
Modest performance, address #12647
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 928fefd6ce17e..d70f3807d264d 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -248,7 +248,7 @@ Deprecations Performance Improvements ~~~~~~~~~~~~~~~~~~~~~~~~ - +- Improved speed of SAS reader (:...
closes #12659 closes #12654 closes #12647 closes #12809 Major performance improvements through use of Cython
https://api.github.com/repos/pandas-dev/pandas/pulls/12656
2016-03-17T12:55:37Z
2016-04-22T15:09:57Z
null
2016-04-22T15:11:03Z
BUG: pivot_table dropna=False drops columns/index names
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 071cf5f17fc56..6413161f77ab0 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -272,6 +272,8 @@ Bug Fixes - Bug in ``pivot_table`` when ``margins=True`` and ``dropna=True`` where nulls still con...
- [X] closes #12133 - [X] closes #12642, closes #12327 (replace PR) - [X] tests added / passed - [X] passes `git diff upstream/master | flake8 --diff` - [X] whatsnew entry Bug fixed from pull request #12327.
https://api.github.com/repos/pandas-dev/pandas/pulls/12650
2016-03-17T02:29:44Z
2016-04-17T14:31:40Z
null
2016-04-17T14:31:42Z
BUG: crosstab with margins=True and dropna=False
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index b7a0cf888f1a2..db58e562b7f9c 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -102,6 +102,10 @@ Bug Fixes - Bug in ``value_counts`` when ``normalize=True`` and ``dropna=True`` where nulls still c...
- [+] closes #12642 - [+] tests added / passed - [+] passes `git diff upstream/master | flake8 --diff` - [+] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12643
2016-03-16T15:18:46Z
2016-03-16T20:40:49Z
null
2016-03-16T21:09:48Z
CLN: removed unused parameter 'out' from Series.idxmin/idxmax
diff --git a/pandas/core/series.py b/pandas/core/series.py index d339a93a3ed9b..7962da7e2441f 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -1196,7 +1196,7 @@ def drop_duplicates(self, keep='first', inplace=False): def duplicated(self, keep='first'): return super(Series, self).duplicat...
- [ ] closes #xxxx - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry It seems misleading to have the `out` parameter in the function signature when it is not used: ``` pd.Series.argmin(self, axis=None, out=None, skipna=True) pd.Series.argmax(self, axis=None, out=N...
https://api.github.com/repos/pandas-dev/pandas/pulls/12638
2016-03-16T06:18:29Z
2016-04-07T03:38:24Z
null
2016-04-30T15:59:50Z
MAINT: PEP8 + spelling fixes in testing.py
diff --git a/pandas/util/testing.py b/pandas/util/testing.py index ba869efbc5837..ebd1f7d2c17f8 100644 --- a/pandas/util/testing.py +++ b/pandas/util/testing.py @@ -1,9 +1,6 @@ from __future__ import division # pylint: disable-msg=W0402 -# flake8: noqa - -import random import re import string import sys @@ -25,1...
https://api.github.com/repos/pandas-dev/pandas/pulls/12637
2016-03-16T04:55:43Z
2016-03-17T13:44:36Z
null
2016-03-17T14:59:10Z
Allow dtype='category' or dtype=None for Series with Categorical
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index a3e20879a2f58..f382efa90cbc0 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -93,3 +93,5 @@ Bug Fixes - Bug in ``value_counts`` when ``normalize=True`` and ``dropna=True`` where nulls still contri...
Allows user to pass dtype='category' when creating a Series with Categorical, but produces a ValueError is any non-categorical dtype is passed. - [x] closes #12574 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12636
2016-03-16T03:03:18Z
2016-03-16T13:59:42Z
null
2016-03-16T13:59:51Z
BUG: Concat with tz-aware and timedelta raises AttributeError
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index b7a0cf888f1a2..a2324a49ebb73 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -125,10 +125,13 @@ Bug Fixes - +- Bug in ``concat`` raises ``AttributeError`` when input data contains tz-aware da...
- [x] closes #12620 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry @jreback 's comment on #12620: > should be handled at a slightly higher level. I added number of `dtype` check logic in `tseries/common/_concat_compat`. But it should work on `base/common/_conc...
https://api.github.com/repos/pandas-dev/pandas/pulls/12635
2016-03-15T21:19:19Z
2016-03-17T14:17:46Z
null
2016-03-19T20:54:13Z
BUG: #12624 where Panel.fillna() ignores inplace=True
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index b7a0cf888f1a2..88cefae1d4a75 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -89,46 +89,17 @@ Bug Fixes ~~~~~~~~~ - Bug in ``Period`` and ``PeriodIndex`` creation raises ``KeyError`` if ``freq=...
Added if condition for fillna when ndim==3 (for Panel) Issue: https://github.com/pydata/pandas/issues/12624
https://api.github.com/repos/pandas-dev/pandas/pulls/12633
2016-03-15T13:51:01Z
2016-03-17T13:54:20Z
null
2016-03-17T13:54:26Z
CI: add in support for coverage via Codecov
diff --git a/.travis.yml b/.travis.yml index 0c2f1b0d0fe2d..7d31ae65d0af8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,26 +36,26 @@ matrix: - LOCALE_OVERRIDE="zh_CN.GB18030" - FULL_DEPS=true - JOB_TAG=_LOCALE - - BUILD_TYPE=conda - python: 2.7 env: - JOB_NAME: "27_nslow...
https://api.github.com/repos/pandas-dev/pandas/pulls/12632
2016-03-15T12:40:16Z
2016-03-15T13:09:25Z
null
2016-03-15T15:34:24Z
BUG: #12624 where Panel.fillna() ignores inplace=True
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index dbe446f0a7b4f..767dd76373017 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -89,3 +89,5 @@ Bug Fixes ~~~~~~~~~ - Bug in ``value_counts`` when ``normalize=True`` and ``dropna=True`` where nulls...
- [x] closes #12624 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Fixes #12624 Author: Pedro M Duarte pmd323@gmail.com
https://api.github.com/repos/pandas-dev/pandas/pulls/12630
2016-03-15T04:39:51Z
2016-03-15T23:49:22Z
null
2016-03-16T00:13:32Z
BUG: GH12622 where pprint of Timestamp in nested structure fails
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 2545407ce43c9..103159ae33d88 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -143,3 +143,5 @@ Bug Fixes - Bug in ``pivot_table`` when ``margins=True`` and ``dropna=True`` where nulls still con...
- [x] closes #12622 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry I suspect this is a bug in Cython (I don't think `type(A).func` should be an `instancemethod`). Not sure if we should use this workaround as we encounter issues in the wild, or do this for all t...
https://api.github.com/repos/pandas-dev/pandas/pulls/12629
2016-03-15T02:18:14Z
2016-03-25T13:25:14Z
null
2016-03-25T13:36:27Z
BUG: .rename* not treating Series as mapping
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index dbe446f0a7b4f..76d86847d3f2c 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -89,3 +89,8 @@ Bug Fixes ~~~~~~~~~ - Bug in ``value_counts`` when ``normalize=True`` and ``dropna=True`` where nulls...
Closes https://github.com/pydata/pandas/issues/12623 I added com.is_dict_like in https://github.com/pydata/pandas/pull/11980 and failed to use it for the `rename` method. Using that now and did some refactoring while I was in there. Added more tests for rename.
https://api.github.com/repos/pandas-dev/pandas/pulls/12626
2016-03-14T22:14:24Z
2016-03-17T14:06:48Z
null
2017-04-05T02:06:43Z
TST: Holiday tests/docs
diff --git a/pandas/tseries/holiday.py b/pandas/tseries/holiday.py index 31e40c6bcbb2c..c265ebf3e7927 100644 --- a/pandas/tseries/holiday.py +++ b/pandas/tseries/holiday.py @@ -23,15 +23,16 @@ def next_monday(dt): def next_monday_or_tuesday(dt): """ For second holiday of two adjacent ones! - If holiday fa...
``` >>> from pandas.tseries.holiday import next_monday_or_tuesday >>> from pandas.tseries.holiday import AbstractHolidayCalendar >>>from pandas.tseries.holiday import Holiday >>>class WrongBoxingDay(AbstractHolidayCalendar): rules = [ Holiday('xmas', month=12, day=25, observance=next_monday_or...
https://api.github.com/repos/pandas-dev/pandas/pulls/12616
2016-03-14T08:12:58Z
2016-05-07T18:49:59Z
null
2016-05-07T18:49:59Z
BUG: Mixed period cannot be displayed with ValueError
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index b7a0cf888f1a2..1a3ee89562cc3 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -44,7 +44,7 @@ Enhancements API changes ~~~~~~~~~~~ - +- ``Period`` and ``PeriodIndex`` now raises ``IncompatibleFre...
- [x] closes #xxxx (not reported) - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry ``` # we can create Series contains Periods with mixed freq s = pd.Series([pd.Period('2011-01', freq='M'), pd.Period('2011-02-01', freq='D')]) # print the created Series raises Val...
https://api.github.com/repos/pandas-dev/pandas/pulls/12615
2016-03-14T07:40:23Z
2016-03-17T16:56:09Z
null
2016-03-19T20:54:47Z
BUG: Crosstab margins ignoring dropna
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index dbe446f0a7b4f..00d8d5c145915 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -89,3 +89,5 @@ Bug Fixes ~~~~~~~~~ - Bug in ``value_counts`` when ``normalize=True`` and ``dropna=True`` where nulls...
To fix bug #12577 : Crosstab margins ignoring dropna
https://api.github.com/repos/pandas-dev/pandas/pulls/12614
2016-03-14T07:12:22Z
2016-03-16T13:17:21Z
null
2016-03-16T15:14:04Z
COMPAT: dateutil 2.5.0 bug fix
diff --git a/ci/install_travis.sh b/ci/install_travis.sh index 1b1eae7b44e45..996061ac29af8 100755 --- a/ci/install_travis.sh +++ b/ci/install_travis.sh @@ -130,7 +130,7 @@ else echo "pip installs" REQ="ci/requirements-${TRAVIS_PYTHON_VERSION}${JOB_TAG}.pip" if [ -e ${REQ} ]; then - pip install -r...
COMPAT: test with latest dateutil via pip COMPAT: dateutil 2.5.0 bugfix causes some tests to fail, skip for now xref #12611
https://api.github.com/repos/pandas-dev/pandas/pulls/12613
2016-03-14T01:48:06Z
2016-03-14T20:57:46Z
null
2016-03-14T20:57:46Z
BUG: ensure Series.name is hashable, #12610
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index e664020946baf..7701bc66b8b92 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -165,3 +165,4 @@ Bug Fixes - Bug in ``pivot_table`` when ``margins=True`` and ``dropna=True`` where nulls still con...
- [x] closes #12610 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` pandas >= 0.18.0 will no longer support compatibility with Python version 2.6 and since Python 2.6 we can use the abstract base class collections.Hashable.
https://api.github.com/repos/pandas-dev/pandas/pulls/12612
2016-03-13T23:51:26Z
2016-03-25T13:30:15Z
null
2016-03-25T17:16:28Z
added pd as namespace
diff --git a/doc/source/io.rst b/doc/source/io.rst index 64967f1979807..5a42f58e69cc7 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -19,10 +19,9 @@ import matplotlib.pyplot as plt plt.close('all') - from pandas import * options.display.max_rows=15 import pandas.util.testing as tm - cli...
- [x ] closes https://github.com/pydata/pandas/pull/12268#discussion_r55924987 This is the msg: more consistent with code in the rest of the document added more namespace Generally, also numpy's randn should used as np.random.randn isolated namespace changes Note: I hope I got the rebase & merge right.
https://api.github.com/repos/pandas-dev/pandas/pulls/12608
2016-03-13T15:08:29Z
2016-05-26T16:15:03Z
null
2016-05-26T16:15:03Z
WIP: ENH: pivot/groupby index with nan
diff --git a/pandas/_libs/hashtable_class_helper.pxi.in b/pandas/_libs/hashtable_class_helper.pxi.in index 3ce82dace40a9..9f21d6c3afb68 100644 --- a/pandas/_libs/hashtable_class_helper.pxi.in +++ b/pandas/_libs/hashtable_class_helper.pxi.in @@ -830,7 +830,7 @@ cdef class PyObjectHashTable(HashTable): val =...
I'm working on a solution for issue #3729. I've identified where to work and put in place a first, crude solution. I need to do more tests. - [ ] closes #3729. - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry xref #9941, #5456, #6992, #443 --- 2016...
https://api.github.com/repos/pandas-dev/pandas/pulls/12607
2016-03-13T14:46:55Z
2017-07-26T23:56:24Z
null
2023-05-11T01:13:26Z
Improved docs for infer_datetime_format
diff --git a/pandas/io/parsers.py b/pandas/io/parsers.py index 2604b6e0784cf..fa9a5cf12570d 100755 --- a/pandas/io/parsers.py +++ b/pandas/io/parsers.py @@ -132,8 +132,10 @@ class ParserWarning(Warning): Note: A fast-path exists for iso8601-formatted dates. infer_datetime_format : boolean, default False - If...
Fixes #12152
https://api.github.com/repos/pandas-dev/pandas/pulls/12606
2016-03-13T12:27:24Z
2016-03-14T13:02:22Z
null
2016-03-14T13:02:51Z
Chooses eval engine automatically depending on whether numexpr is installed
diff --git a/pandas/computation/eval.py b/pandas/computation/eval.py index c3300ffca468e..f5b3695d4dd62 100644 --- a/pandas/computation/eval.py +++ b/pandas/computation/eval.py @@ -131,7 +131,7 @@ def _check_for_locals(expr, stack_level, parser): raise SyntaxError(msg) -def eval(expr, parser='panda...
Fixes #12008
https://api.github.com/repos/pandas-dev/pandas/pulls/12605
2016-03-13T12:20:32Z
2016-04-17T15:49:39Z
null
2016-04-17T15:49:39Z
CLN GH10559 Rename sheetname variable to sheet_name for consistency
diff --git a/pandas/io/excel.py b/pandas/io/excel.py index 5656c360b3990..6fd7b1c362975 100644 --- a/pandas/io/excel.py +++ b/pandas/io/excel.py @@ -72,7 +72,7 @@ def get_writer(engine_name): raise ValueError("No Excel writer '%s'" % engine_name) -def read_excel(io, sheetname=0, header=0, skiprows=None, sk...
- [x] closes #10559 - [x] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12604
2016-03-13T04:11:25Z
2016-05-07T18:50:37Z
null
2016-09-27T14:32:11Z
BUG: Matched Round Signature with NumPy's
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 0118dea6f8867..2acef5ca61f1e 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -90,6 +90,7 @@ Performance Improvements Bug Fixes ~~~~~~~~~ +- ``round`` now accepts an ``out`` argument to maintain...
Closes #12600 by re-accepting the `out` parameter as a `**kwargs` argument. Also removes the `out` parameter from the signature for `DataFrame.round` and replaces it with `**kwargs` like its `Series` counterpart. Furthermore, since `out` is a parameter that is not supported in `pandas`, checks that `out` is `None` an...
https://api.github.com/repos/pandas-dev/pandas/pulls/12603
2016-03-12T23:38:09Z
2016-03-17T22:57:44Z
null
2016-03-17T23:16:03Z
fixes print syntax error in documentation
diff --git a/doc/source/comparison_with_r.rst b/doc/source/comparison_with_r.rst index 0841f3354d160..db813e7cf55a1 100644 --- a/doc/source/comparison_with_r.rst +++ b/doc/source/comparison_with_r.rst @@ -295,7 +295,7 @@ In ``pandas`` the equivalent expression, using the }) grouped = df.groupby(['month','week...
fixes the syntax error in the "comparison with R" docs
https://api.github.com/repos/pandas-dev/pandas/pulls/12602
2016-03-12T16:25:39Z
2016-03-12T17:31:14Z
null
2016-03-12T17:31:20Z
Include index names in column names of HTML output of DataFrame Style…
diff --git a/pandas/core/style.py b/pandas/core/style.py index f66ac7485c76e..cb8d5f9e55d65 100644 --- a/pandas/core/style.py +++ b/pandas/core/style.py @@ -179,6 +179,7 @@ def _translate(self): DATA_CLASS = "data" BLANK_CLASS = "blank" BLANK_VALUE = "" + INDEX_CLASS = COL_HEADING_CLAS...
Include index names in column names of HTML output of DataFrame Styler, if the index names are available (previous behaviour is not to include index column names and instead leave blank spaces)
https://api.github.com/repos/pandas-dev/pandas/pulls/12598
2016-03-11T17:57:17Z
2016-03-11T19:05:54Z
null
2016-03-11T21:46:30Z
Implementing rolling min/max functions that can retain the original type
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index b7a0cf888f1a2..d9e0061411843 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -132,3 +132,4 @@ Bug Fixes - Bug in ``pivot_table`` when ``margins=True`` and ``dropna=True`` where nulls still con...
- [ ] Enhances previous bugfix to #12373 - [ ] Added test_rolling_min_max_test_types to test_windows - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] Added documentation to computation.rst for the new as_float argument and updated whatsnew for v0.18.0 - Changed the rolling min/max functions in algos.pyx...
https://api.github.com/repos/pandas-dev/pandas/pulls/12595
2016-03-11T15:31:51Z
2016-03-17T15:13:06Z
null
2016-06-07T12:40:26Z
API: deprecate Index.sym_diff in favor of symmetric_difference
diff --git a/doc/source/api.rst b/doc/source/api.rst index 85f1984f29291..d6402100a296f 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -1374,7 +1374,7 @@ Combining / joining / set operations Index.intersection Index.union Index.difference - Index.sym_diff + Index.symmetric_difference Sel...
closes #12591
https://api.github.com/repos/pandas-dev/pandas/pulls/12594
2016-03-11T14:09:02Z
2016-03-17T13:48:15Z
null
2016-03-17T13:48:23Z
BLD: allow different options for compiler warnings on windows
diff --git a/setup.py b/setup.py index 9d3b8e25c9590..e3fb5a007aad3 100755 --- a/setup.py +++ b/setup.py @@ -14,6 +14,15 @@ import platform from distutils.version import LooseVersion +def is_platform_windows(): + return sys.platform == 'win32' or sys.platform == 'cygwin' + +def is_platform_linux(): + return s...
windows doesn't like gcc/clang options, big surprise, so disable for now
https://api.github.com/repos/pandas-dev/pandas/pulls/12590
2016-03-11T02:11:23Z
2016-03-11T02:22:01Z
null
2016-03-11T02:22:01Z
BLD: suppress useless warnings
diff --git a/setup.py b/setup.py index 94fd2998a84e6..9d3b8e25c9590 100755 --- a/setup.py +++ b/setup.py @@ -375,6 +375,8 @@ def srcpath(name=None, suffix='.pyx', subdir='src'): def pxd(name): return os.path.abspath(pjoin('pandas', name + '.pxd')) +# args to ignore warnings +extra_compile_args=['-Wno-unused-fun...
https://api.github.com/repos/pandas-dev/pandas/pulls/12589
2016-03-11T01:03:54Z
2016-03-11T01:14:05Z
null
2016-03-11T01:14:05Z
DOC: Fixes LaTeX build error
diff --git a/pandas/tseries/resample.py b/pandas/tseries/resample.py index 4e1ca42710cc5..0ac10eb4fa15b 100644 --- a/pandas/tseries/resample.py +++ b/pandas/tseries/resample.py @@ -414,6 +414,8 @@ def backfill(self, limit=None): def fillna(self, method, limit=None): """ + Fill missing values + ...
The PDF doc build was chocking on the `Parameters` section being the first item.
https://api.github.com/repos/pandas-dev/pandas/pulls/12586
2016-03-10T13:36:16Z
2016-03-11T14:33:31Z
null
2017-04-05T02:06:37Z
Resolve ImportError in read_gbq which appears with oauthclient >= 2.0
diff --git a/ci/requirements-2.7.pip b/ci/requirements-2.7.pip index 9bc533110cea3..54596ad2a8169 100644 --- a/ci/requirements-2.7.pip +++ b/ci/requirements-2.7.pip @@ -2,5 +2,6 @@ blosc httplib2 google-api-python-client == 1.2 python-gflags == 2.0 +oauth2client == 1.5.0 pathlib py diff --git a/ci/requirements-3.4...
- [x] closes #12572 - [x] tests passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12582
2016-03-10T03:12:37Z
2016-03-11T01:39:04Z
null
2016-03-12T13:53:36Z
DOC: Remove Panel.to_json from docs.
diff --git a/doc/source/api.rst b/doc/source/api.rst index 662f8c512e8a7..85f1984f29291 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -1215,7 +1215,6 @@ Serialization / IO / Conversion Panel.to_pickle Panel.to_excel Panel.to_hdf - Panel.to_json Panel.to_sparse Panel.to_frame Pane...
- [DOC] closes #12571 - removed Panel.to_json from docs, as it is not yet implemented.
https://api.github.com/repos/pandas-dev/pandas/pulls/12581
2016-03-10T01:02:58Z
2016-03-10T12:48:49Z
null
2016-03-10T12:48:56Z
Fix #12529 / Improve to_clipboard for objects containing unicode
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 70a1ad4a335ea..417988c2f935f 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -43,3 +43,5 @@ Performance Improvements Bug Fixes ~~~~~~~~~ + +- Bug in ``to_clipboard`` when called for objects con...
Superceded by #14599 --- - [x] closes #12529 - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry I added the whatsnew entry to 0.18.0.
https://api.github.com/repos/pandas-dev/pandas/pulls/12580
2016-03-09T23:57:00Z
2016-11-18T09:34:48Z
null
2023-05-11T01:13:26Z
DOC: clean up some doc-build warnings
diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 12fb8cae4dfc7..8594cd4af34e5 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -36,6 +36,10 @@ if [ x"$DOC_BUILD" != x"" ]; then echo ./make.py ./make.py + echo ######################## + echo # Create and send docs # + echo #############...
https://api.github.com/repos/pandas-dev/pandas/pulls/12579
2016-03-09T22:05:12Z
2016-03-10T18:50:52Z
null
2016-03-10T18:50:52Z
Add normalization to crosstab
diff --git a/doc/source/reshaping.rst b/doc/source/reshaping.rst index 611771a47c233..f21b936df93f6 100644 --- a/doc/source/reshaping.rst +++ b/doc/source/reshaping.rst @@ -383,9 +383,12 @@ calling ``to_string`` if you wish: Note that ``pivot_table`` is also available as an instance method on DataFrame. +.. _resha...
Closes #12569 Note does NOT address #12577
https://api.github.com/repos/pandas-dev/pandas/pulls/12578
2016-03-09T21:58:21Z
2016-04-25T14:34:14Z
null
2016-04-25T14:34:16Z
BUG: value_count(normalize=True, dropna=True) counting missing in denominator, #12558
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 70a1ad4a335ea..24bd6101e96aa 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -43,3 +43,4 @@ Performance Improvements Bug Fixes ~~~~~~~~~ +- Bug in ``value_counts`` where normalizes over all obs...
Closes #12558
https://api.github.com/repos/pandas-dev/pandas/pulls/12576
2016-03-09T21:41:52Z
2016-03-14T01:20:23Z
null
2016-03-14T01:20:23Z
ENH: allow categoricals in msgpack
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index cc2269afa6e61..182562f055164 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -78,6 +78,7 @@ Other Enhancements - ``pd.read_csv()`` now supports opening ZIP files that contains a single CSV, via ex...
Supercedes #12191. I've made a best-effort to rebase this against master. It seems to work here.
https://api.github.com/repos/pandas-dev/pandas/pulls/12573
2016-03-09T16:59:14Z
2016-04-25T22:06:37Z
null
2016-04-25T22:06:59Z
TST: nicer output from pd.test()
diff --git a/pandas/computation/tests/test_eval.py b/pandas/computation/tests/test_eval.py index 518e5dd999391..97db171312557 100644 --- a/pandas/computation/tests/test_eval.py +++ b/pandas/computation/tests/test_eval.py @@ -1633,8 +1633,8 @@ def test_result_types(self): self.check_result_type(np.float64, np.f...
TST: skip result2 test in computation/test_eval.py as unreliable TST: skip some unreliable tests in io/tests/test_data.py
https://api.github.com/repos/pandas-dev/pandas/pulls/12568
2016-03-09T01:34:48Z
2016-03-09T02:48:37Z
null
2016-03-09T02:48:37Z
CI: add osx to travis, xref #8630
diff --git a/.travis.yml b/.travis.yml index e08bd3b0413c9..0c2f1b0d0fe2d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,15 +19,16 @@ git: matrix: fast_finish: true include: - - python: 2.7 + - language: objective-c + os: osx + compiler: clang + osx_image: xcode6.4 env: - ...
CI: remove numpy_dev 2.7 build CI: remove extraneous requirements
https://api.github.com/repos/pandas-dev/pandas/pulls/12567
2016-03-09T01:33:57Z
2016-03-09T14:37:31Z
null
2016-03-09T15:23:57Z
BUG: GH12558 where nulls contributed to normalized value_counts
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 70a1ad4a335ea..5aa1d30979cfb 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -43,3 +43,5 @@ Performance Improvements Bug Fixes ~~~~~~~~~ + +- Bug in ``value_counts`` when ``normalize=True`` and...
- [x] closes #12558 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12566
2016-03-09T00:29:03Z
2016-03-12T17:46:32Z
null
2016-03-12T17:46:56Z
Update asv config + fix some broken benchmarks
diff --git a/.gitignore b/.gitignore index 06ff0b90b8345..d987bab6fd5d7 100644 --- a/.gitignore +++ b/.gitignore @@ -83,7 +83,10 @@ scikits # Performance Testing # ####################### -asv_bench/ +asv_bench/env/ +asv_bench/html/ +asv_bench/results/ +asv_bench/pandas/ # Documentation generated files # ######...
- Enable platform-dependent config in asv (needs asv git version for it to do something) - Enable wheel cache in asv (in asv git version) - Fix a few easily fixed broken benchmarks
https://api.github.com/repos/pandas-dev/pandas/pulls/12563
2016-03-08T20:23:58Z
2016-04-25T14:53:27Z
null
2016-04-25T15:07:16Z
CI: fix appveyor to use fixed versioning
diff --git a/appveyor.yml b/appveyor.yml index 650137b995121..7941820204916 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -8,9 +8,6 @@ matrix: fast_finish: true # immediately finish build once one of the jobs fails. -# set clone depth -clone_depth: 300 - environment: global: # SDK v7.0 MSVC Express...
since the GIT_\* env variables are not available
https://api.github.com/repos/pandas-dev/pandas/pulls/12561
2016-03-08T17:43:06Z
2016-03-08T18:19:34Z
null
2016-03-08T18:19:34Z
BUG: SeriesGroupby.nunique raises an IndexError on empty Series #12553
diff --git a/pandas/core/groupby.py b/pandas/core/groupby.py index bea62e98e4a2a..0cf01a0eba71e 100644 --- a/pandas/core/groupby.py +++ b/pandas/core/groupby.py @@ -2843,6 +2843,10 @@ def true_and_notnull(x, *args, **kwargs): def nunique(self, dropna=True): """ Returns number of unique elements in the gro...
Closes #12553 xref #13239 Made a new pull request to clean up from #12557
https://api.github.com/repos/pandas-dev/pandas/pulls/12560
2016-03-08T08:48:49Z
2016-12-16T23:57:36Z
null
2016-12-16T23:57:36Z
do not upcast results to float64 when float32 scalar *+/- float64 array
diff --git a/doc/source/whatsnew/v0.18.2.txt b/doc/source/whatsnew/v0.18.2.txt index dfb5ebc9379b1..6421f31c0267e 100644 --- a/doc/source/whatsnew/v0.18.2.txt +++ b/doc/source/whatsnew/v0.18.2.txt @@ -89,6 +89,7 @@ Other enhancements - ``pd.read_html()`` has gained support for the ``decimal`` option (:issue:`12907`)...
- [x] closes #12388 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12559
2016-03-08T07:36:45Z
2016-05-30T14:39:34Z
null
2016-05-30T14:39:39Z
BUG: Fix for issue #12553
diff --git a/pandas/core/groupby.py b/pandas/core/groupby.py index 442f2132847ee..377f758926899 100644 --- a/pandas/core/groupby.py +++ b/pandas/core/groupby.py @@ -2790,6 +2790,10 @@ def true_and_notnull(x, *args, **kwargs): def nunique(self, dropna=True): """ Returns number of unique elements in the gro...
closes #12553
https://api.github.com/repos/pandas-dev/pandas/pulls/12557
2016-03-07T19:16:34Z
2016-03-08T08:43:56Z
null
2016-03-08T13:14:29Z
Added pandas logo and separator
diff --git a/README.md b/README.md index 6295e7374e1ee..54c772da4d270 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ +<div align="center"> + <img src="http://pandas.pydata.org/_static/pandas_logo.png"><br> +</div> +----------------- + # pandas: powerful Python data analysis toolkit <table>
- Added pandas logo and separator at the top of page
https://api.github.com/repos/pandas-dev/pandas/pulls/12555
2016-03-07T17:25:53Z
2016-03-07T17:30:36Z
null
2016-03-07T17:30:36Z
BUG: Respect 'usecols' parameter even when CSV rows are uneven
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 2545407ce43c9..d9983759083ca 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -55,6 +55,12 @@ API changes +- ``CParserError`` is now a ``ValueError`` instead of just an ``Exception`` (:issue:`...
Closes #12203 by overriding the row alignment checks for both engines when the `usecols` parameter is passed into `read_csv`.
https://api.github.com/repos/pandas-dev/pandas/pulls/12551
2016-03-07T10:28:42Z
2016-03-20T15:10:03Z
null
2016-03-20T15:16:53Z
TST: Add more period tests
diff --git a/pandas/tests/test_groupby.py b/pandas/tests/test_groupby.py index 89ef4decfda39..d301016aa1316 100644 --- a/pandas/tests/test_groupby.py +++ b/pandas/tests/test_groupby.py @@ -3993,11 +3993,13 @@ def test_groupby_groups_datetimeindex_tz(self): df['datetime'] = df['datetime'].apply( la...
- [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - Added some `Period` related tests in preparation to add period dtype. - Moved some tests `test_timeseries` to correct test class.
https://api.github.com/repos/pandas-dev/pandas/pulls/12549
2016-03-06T23:45:36Z
2016-03-07T15:11:06Z
null
2020-11-01T22:12:55Z
(WIP)ENH: plot now supports cycler
diff --git a/ci/requirements-2.7_SLOW.run b/ci/requirements-2.7_SLOW.run index f02a7cb8a309a..cc70e96a00365 100644 --- a/ci/requirements-2.7_SLOW.run +++ b/ci/requirements-2.7_SLOW.run @@ -2,6 +2,7 @@ python-dateutil pytz numpy=1.8.2 matplotlib=1.3.1 +cycler scipy patsy statsmodels diff --git a/ci/requirements-3....
- [x] closes #12354 - [ ] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry - [ ] plotting no try to use `cycler` regardless of mpl version (previously tried if mpl >= 1.5) - [ ] bug in area plot kwds handling ## Cyclic option handling Allows to accept some option (c...
https://api.github.com/repos/pandas-dev/pandas/pulls/12547
2016-03-06T22:20:43Z
2017-05-06T23:19:52Z
null
2017-05-08T09:42:56Z
DOC: fix doc build warnings
diff --git a/doc/source/basics.rst b/doc/source/basics.rst index d0469078aa3e9..1e30921e7248f 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -370,6 +370,7 @@ be broadcast: or it can return False if broadcasting can not be done: .. ipython:: python + :okwarning: np.array([1, 2, 3]) == np....
https://api.github.com/repos/pandas-dev/pandas/pulls/12545
2016-03-06T21:22:53Z
2016-03-08T14:26:14Z
null
2016-03-08T18:33:52Z
BLD: Install texlive packages in Travis CI
diff --git a/ci/build_docs.sh b/ci/build_docs.sh index c0843593f85ff..942c2f7c64f4f 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -19,7 +19,7 @@ if [ x"$DOC_BUILD" != x"" ]; then source activate pandas conda install -n pandas -c r r rpy2 --yes - time sudo apt-get $APT_ARGS install dvipng + t...
- Closes #12543 - `texlive-latex-base` needed for `latex` - `texlive-latex-extra` needed for `utf8x.def`
https://api.github.com/repos/pandas-dev/pandas/pulls/12544
2016-03-06T20:37:22Z
2016-03-06T22:42:23Z
null
2016-03-21T15:03:32Z
BUG: Can't get period code with frequency alias 'minute' or 'Minute'
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index dbe446f0a7b4f..834e608bfaf7a 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -88,4 +88,12 @@ Performance Improvements Bug Fixes ~~~~~~~~~ + - Bug in ``value_counts`` when ``normalize=True`` an...
- [x] closes #11854 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Also, added `NS` to normal alias not to show warnings (as the same as `MS` and `NS`)
https://api.github.com/repos/pandas-dev/pandas/pulls/12540
2016-03-06T02:13:43Z
2016-03-15T14:22:14Z
null
2016-03-15T19:57:26Z
ENH: Allow where/mask/Indexers to accept callable
diff --git a/doc/source/indexing.rst b/doc/source/indexing.rst index 5afe69791bbdf..6227b08587790 100644 --- a/doc/source/indexing.rst +++ b/doc/source/indexing.rst @@ -79,6 +79,10 @@ of multi-axis indexing. - A slice object with labels ``'a':'f'``, (note that contrary to usual python slices, **both** the start...
- [x] closes #12533 - [x] closes #11485 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Current impl is very simple like `assign`. Another idea is applying some restriction to return value from `callable` (for example, only allow aligned `DataFrame` or scalar).
https://api.github.com/repos/pandas-dev/pandas/pulls/12539
2016-03-06T02:02:31Z
2016-04-29T17:05:49Z
null
2016-04-29T17:06:56Z
BUG: Series.map may raise TypeError in Categorical or DatetimeTz
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index c6642c5216262..5acf880a54c58 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -129,6 +129,7 @@ API changes - ``Period`` and ``PeriodIndex`` now raises ``IncompatibleFrequency`` error which inheri...
- [x] closes #12473 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Needs to decide what categorical dtype `map` should return. Even though `apply` returns `object` dtype, but returning `category` is more consistent?
https://api.github.com/repos/pandas-dev/pandas/pulls/12532
2016-03-05T15:07:41Z
2016-04-18T17:17:44Z
null
2016-05-14T10:56:00Z
BUG: CategoricalIndex.get_loc returns array even if it is unique
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index dbe446f0a7b4f..7e01690958457 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -89,3 +89,6 @@ Bug Fixes ~~~~~~~~~ - Bug in ``value_counts`` when ``normalize=True`` and ``dropna=True`` where nulls...
- [x] related to #11558 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Made `CategoricalIndex.get_loc` to return the same result as normal `Index`. ``` data2 = pd.DataFrame([[1,2,3],[3,4,5]], index=pd.Categorical(['one', 'two'])) # in current master, it return...
https://api.github.com/repos/pandas-dev/pandas/pulls/12531
2016-03-05T14:29:49Z
2016-03-15T13:39:17Z
null
2016-03-15T19:58:00Z
ENH: Partial string matching for timestamps with multiindex
diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index a986c3e1cb065..c262a1c505673 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -422,6 +422,20 @@ We are stopping on the included end-point as it is part of the index dft.loc['2013-1-15 12:30:00'] +DatetimeIndex P...
- [x] closes #10331 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Includes implementation, unit tests, documentation fixes and whatsnew.
https://api.github.com/repos/pandas-dev/pandas/pulls/12530
2016-03-05T04:24:30Z
2016-03-21T12:27:56Z
null
2016-03-22T02:06:26Z
BUG: Add exception when different number of fields present in file lines
diff --git a/pandas/src/parser/tokenizer.c b/pandas/src/parser/tokenizer.c index dae15215929b7..1cf0b32d54f0b 100644 --- a/pandas/src/parser/tokenizer.c +++ b/pandas/src/parser/tokenizer.c @@ -537,9 +537,13 @@ static int end_line(parser_t *self) { } while (fields < ex_fields){ - ...
Addresses issue in #12519 by raising exception when 'filepath_or_buffer' in 'read_csv' contains different number of fields in input lines. However, according to tests the behaviour reported in bug is expected (lines 376-390): https://github.com/pydata/pandas/blob/master/pandas/io/tests/test_cparser.py#L376 So should ...
https://api.github.com/repos/pandas-dev/pandas/pulls/12526
2016-03-04T15:50:49Z
2016-05-07T17:48:56Z
null
2016-05-07T17:48:56Z
TST: Rework style test skip
diff --git a/pandas/core/style.py b/pandas/core/style.py index 76460fdf224b2..f66ac7485c76e 100644 --- a/pandas/core/style.py +++ b/pandas/core/style.py @@ -7,8 +7,7 @@ from contextlib import contextmanager from uuid import uuid1 import copy -from collections import defaultdict -from collections.abc import MutableMa...
Also redoes some of the changes that were inadvertently reverted in https://github.com/pydata/pandas/pull/12260. That PR had two commits, one of which was an older version of what was eventually merged in https://github.com/pydata/pandas/pull/12162. The stale commit incorrectly merged was a15248ae7. It should have be...
https://api.github.com/repos/pandas-dev/pandas/pulls/12525
2016-03-04T15:22:30Z
2016-03-05T15:13:14Z
null
2016-11-03T12:38:55Z
Revert #12260 "BUG: Make Styler ignore None index names to match to_html..."
diff --git a/doc/source/html-styling.ipynb b/doc/source/html-styling.ipynb index 77813a03c704a..1881727001546 100644 --- a/doc/source/html-styling.ipynb +++ b/doc/source/html-styling.ipynb @@ -54,7 +54,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 3, "metadata": { "c...
Master started failing on https://github.com/pydata/pandas/pull/12260 [travis](https://travis-ci.org/pydata/pandas/builds/113480877). Not entirely sure why yet, but was able to reproduce one of the failures locally, and fix it with the revert.
https://api.github.com/repos/pandas-dev/pandas/pulls/12524
2016-03-04T14:04:13Z
2016-03-05T02:12:19Z
null
2016-11-03T12:38:54Z
Fix typo
diff --git a/doc/source/advanced.rst b/doc/source/advanced.rst index a28eb39f36917..beb803282ebe3 100644 --- a/doc/source/advanced.rst +++ b/doc/source/advanced.rst @@ -281,7 +281,7 @@ As usual, **both sides** of the slicers are included as this is label indexing. .. warning:: You should specify all axes in the ...
https://api.github.com/repos/pandas-dev/pandas/pulls/12523
2016-03-04T12:56:59Z
2016-03-05T18:02:40Z
null
2017-09-03T11:47:50Z
DOC: Examples of monotonic/non-monotonic label-based indexing
diff --git a/doc/source/gotchas.rst b/doc/source/gotchas.rst index fe7ab67b7f759..39044662b5d13 100644 --- a/doc/source/gotchas.rst +++ b/doc/source/gotchas.rst @@ -242,6 +242,40 @@ Label-based slicing conventions Non-monotonic indexes require exact matches ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +If the index ...
Just ran into this gotcha and almost filed it as a bug report. Added a few examples to fill in the section header.
https://api.github.com/repos/pandas-dev/pandas/pulls/12522
2016-03-03T23:46:57Z
2016-04-17T16:03:30Z
null
2016-04-17T16:03:39Z
TST: Fix NOQA for flake8 checking in datetools.py
diff --git a/pandas/core/datetools.py b/pandas/core/datetools.py index 91b33d30004b6..f44f762b4398f 100644 --- a/pandas/core/datetools.py +++ b/pandas/core/datetools.py @@ -1,8 +1,8 @@ """A collection of random tools for dealing with dates in Python""" -from pandas.tseries.tools import * # noqa -from pandas.tseries...
Recent changes to pyflakes (see <a href="https://github.com/pyflakes/pyflakes/blob/0532189b34086740d7fe553bd87c0a6cf682a93b/pyflakes/checker.py#L544-L546">here</a>) suddenly started raising errors in `datetools.py` due to the star imports at the top, which the `#noqa` was not preventing. The correct syntax is `# flake8...
https://api.github.com/repos/pandas-dev/pandas/pulls/12517
2016-03-03T02:40:30Z
2016-03-03T02:55:40Z
null
2016-03-03T03:05:22Z
Add a UK England and Wales holiday calendar
diff --git a/pandas/tseries/holiday.py b/pandas/tseries/holiday.py index 31e40c6bcbb2c..a7fbdb0e35371 100644 --- a/pandas/tseries/holiday.py +++ b/pandas/tseries/holiday.py @@ -500,6 +500,23 @@ class USFederalHolidayCalendar(AbstractHolidayCalendar): ] +class EnglandAndWalesHolidayCalendar(AbstractHolidayCalen...
The rules are described at: https://en.wikipedia.org/wiki/Public_holidays_in_the_United_Kingdom#England.2C_Northern_Ireland_and_Wales Sample data used to check those rules (which is also included in tests) is from the government's website: https://www.gov.uk/bank-holidays
https://api.github.com/repos/pandas-dev/pandas/pulls/12514
2016-03-02T17:13:07Z
2016-03-03T02:13:09Z
null
2023-05-11T01:13:25Z
BUG: Fix parse_dates processing with usecols and C engine
diff --git a/doc/source/io.rst b/doc/source/io.rst index a78222dd748ad..6b287a2eea532 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -120,8 +120,12 @@ index_col : int or sequence or ``False``, default ``None`` each line, you might consider ``index_col=False`` to force pandas to *not* use the first col...
closes #9755 closes #12678 Continuing on my conquest of `read_csv` bugs, this PR fixes a bug brought up in #9755 in processing `parse_dates` with the C engine in which the wrong indices (those of the filtered column names) were being used to determine the date columns to not be dtype-parsed by the C engine. The corr...
https://api.github.com/repos/pandas-dev/pandas/pulls/12512
2016-03-02T15:14:52Z
2016-04-06T19:17:26Z
null
2016-04-06T19:29:40Z
COMPAT: blacklist numexpr=2.4.4
diff --git a/ci/requirements-3.4_SLOW.run b/ci/requirements-3.4_SLOW.run index f0101d34204a3..f9f226e3f1465 100644 --- a/ci/requirements-3.4_SLOW.run +++ b/ci/requirements-3.4_SLOW.run @@ -9,7 +9,7 @@ html5lib patsy beautiful-soup scipy -numexpr +numexpr=2.4.4 pytables matplotlib lxml diff --git a/ci/requirements...
close #12489 xref #11915
https://api.github.com/repos/pandas-dev/pandas/pulls/12511
2016-03-02T13:37:13Z
2016-03-03T12:11:02Z
null
2016-03-03T12:11:02Z
BUG: Respect usecols even with empty data
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 071cf5f17fc56..4387a51db8df3 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -179,6 +179,45 @@ New Behavior: # Output is a DataFrame df.groupby(pd.TimeGrouper(key='date', freq='M')).apply...
closes #12493 in which the `usecols` argument was not being respected for empty data. This is because no filtering was applied when the first (and only) chunk was being read.
https://api.github.com/repos/pandas-dev/pandas/pulls/12506
2016-03-02T01:45:47Z
2016-04-13T01:30:28Z
null
2016-04-13T01:32:31Z
CLN: Removed pandas.util.testing.choice
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 1e07e38c23970..f05d37c7607a3 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1195,3 +1195,4 @@ Bug Fixes - Bug in ``DataFrame.apply`` in which reduction was not being prevented for cases in which...
- [x] closes #12386 - [x] tests passed - [x] whatsnew entry Removed pandas.util.testing.choice() method. Replaced all references to it with calls to np.random.choice(). Added entry to whatsnew. #12386
https://api.github.com/repos/pandas-dev/pandas/pulls/12505
2016-03-02T00:44:41Z
2016-03-02T12:46:00Z
null
2016-03-03T14:43:57Z
BUG: Fixed grow_buffer to grow when capacity is reached
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 8d36d323f48f9..537dfde4a024f 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1199,3 +1199,4 @@ Bug Fixes - Bug in ``DataFrame.apply`` in which reduction was not being prevented for cases in which...
Addresses issue in #12494 by allowing `grow_buffer` to grow the size of the parser buffer when buffer capacity is achieved. Previously, you had to exceed capacity for this to occur, but that was inconsistent with the `end_field` check later on when handling the EOF terminator, where reached capacity was considered a b...
https://api.github.com/repos/pandas-dev/pandas/pulls/12504
2016-03-01T16:59:03Z
2016-03-03T21:55:35Z
null
2016-03-03T22:21:48Z
BUG: Allow assignment by indexing with duplicate column names
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 77c8a5a585b51..49e6945bf4700 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1201,3 +1201,4 @@ Bug Fixes - Bug when initializing categorical series with a scalar value. (:issue:`12336`) - Bug wh...
closes #12344 in which assignment to columns in `DataFrame` with duplicate column names caused all columns with the same name to be reassigned. The bug was located <a href="https://github.com/pydata/pandas/blob/master/pandas/core/indexing.py#L545">here</a>. When you try to index into the DataFrame using `.iloc`, `p...
https://api.github.com/repos/pandas-dev/pandas/pulls/12498
2016-03-01T02:11:13Z
2016-03-06T15:28:43Z
null
2016-03-06T15:43:07Z
Extract doc fix
diff --git a/doc/source/text.rst b/doc/source/text.rst index 53567ea25aeac..42ecfef35e543 100644 --- a/doc/source/text.rst +++ b/doc/source/text.rst @@ -256,7 +256,7 @@ It raises ``ValueError`` if ``expand=False``. .. code-block:: python >>> s.index.str.extract("(?P<letter>[a-zA-Z])([0-9]+)", expand=False) - ...
A fix for a small problem with the docs for extract. Also the first code block on http://pandas-docs.github.io/pandas-docs-travis/whatsnew.html#whatsnew-0180-enhancements-extract should show a warning but it does not. any ideas how to fix that?
https://api.github.com/repos/pandas-dev/pandas/pulls/12496
2016-02-29T19:50:12Z
2016-03-01T12:44:42Z
null
2016-03-01T12:44:51Z
ENH: Allow exponentially weighted functions to specify alpha directly
diff --git a/doc/source/computation.rst b/doc/source/computation.rst index 2b8cf7e41431b..a495020d704f1 100644 --- a/doc/source/computation.rst +++ b/doc/source/computation.rst @@ -733,24 +733,29 @@ therefore there is an assumption that :math:`x_0` is not an ordinary value but rather an exponentially weighted moment o...
- Closes #10789 - Passes Travis CI, nosetests, and flake8 - Covered by new tests in test_window.py:TestMoments - Documented in computation.rst and v0.18.0.txt
https://api.github.com/repos/pandas-dev/pandas/pulls/12492
2016-02-29T03:01:48Z
2016-03-06T14:57:59Z
null
2016-03-21T15:03:38Z
DOC: fixed references to DataFrameGroupBy methods in comparison_with_…
diff --git a/doc/source/api.rst b/doc/source/api.rst index 59f0f0a82a892..662f8c512e8a7 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -1694,16 +1694,18 @@ application to columns of a specific data type. .. autosummary:: :toctree: generated/ + DataFrameGroupBy.agg + DataFrameGroupBy.all + Data...
…sql.rst
https://api.github.com/repos/pandas-dev/pandas/pulls/12491
2016-02-29T01:04:27Z
2016-03-01T02:56:15Z
null
2016-03-01T02:56:33Z
TST: Eliminating references to pandas.util.testing.choice
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 1e07e38c23970..eced8515ed17f 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1195,3 +1195,5 @@ Bug Fixes - Bug in ``DataFrame.apply`` in which reduction was not being prevented for cases in which...
- [x] closes #12386 - [x] tests passed - [x] passes `git diff upstream/master | flake8 --diff` Want to remove pandas.util.testing.choice. First eliminating all references to it. Doing this in more than one commit as there are a lot of them. #12386
https://api.github.com/repos/pandas-dev/pandas/pulls/12490
2016-02-28T23:07:54Z
2016-03-01T22:27:12Z
null
2016-03-01T22:27:12Z
typo
diff --git a/pandas/core/style.py b/pandas/core/style.py index 15fcec118e7d4..9a44109266957 100644 --- a/pandas/core/style.py +++ b/pandas/core/style.py @@ -352,7 +352,7 @@ def render(self): ``Styler`` objects have defined the ``_repr_html_`` method which automatically calls ``self.render()`` when it'...
fix typo in comment
https://api.github.com/repos/pandas-dev/pandas/pulls/12488
2016-02-28T15:56:09Z
2016-02-28T23:11:31Z
null
2016-02-28T23:11:36Z
CLN: cleanup strings._wrap_result
diff --git a/pandas/core/strings.py b/pandas/core/strings.py index c1ab46956c25f..a7ed1ba0c0be0 100644 --- a/pandas/core/strings.py +++ b/pandas/core/strings.py @@ -604,7 +604,7 @@ def str_extract(arr, pat, flags=0, expand=None): return _str_extract_frame(arr._orig, pat, flags=flags) else: result...
- Merged `strings._wrap_result` and `strings._wrap_result_expand` for cleanup.
https://api.github.com/repos/pandas-dev/pandas/pulls/12487
2016-02-28T08:26:08Z
2016-03-02T12:43:50Z
null
2016-03-04T22:23:40Z
ENH: optional ':' separator in ISO8601 strings
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 7f253ae437d9f..dc74791e916cc 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1200,3 +1200,5 @@ Bug Fixes - Bug when initializing categorical series with a scalar value. (:issue:`12336`) - Bug wh...
- [X] closes #10041 - [X] tests added / passed - [X] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Includes some refactoring in the ISO8601 parser. If more tests are desired, please let me know where to put them. Same for the whatsnew entry. This is effectively my first pull request for Pandas...
https://api.github.com/repos/pandas-dev/pandas/pulls/12483
2016-02-27T15:53:02Z
2016-03-06T20:44:23Z
null
2016-03-06T20:45:41Z