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
API/COMPAT: add pydatetime-style positional args to Timestamp constructor
diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index 114607f117756..62601821488d3 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -98,6 +98,7 @@ time. pd.Timestamp(datetime(2012, 5, 1)) pd.Timestamp('2012-05-01') + pd.Timestamp(2012, 5, 1) However, in many ca...
- [X] closes #10758 - [X] tests added / passed - [X] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry If more tests are desired, please let me know where to put them. Same for the whatsnew entry. This is my first pull request for Pandas. cc @jreback
https://api.github.com/repos/pandas-dev/pandas/pulls/12482
2016-02-27T15:47:56Z
2016-05-20T14:16:17Z
null
2016-05-20T16:14:51Z
BUG: support fused types in roll_min/max #12373
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: - ...
- Closes #12373 - Added test_rolling_min_max_types to test_window.py - passes `git diff upstream/master | flake8 --diff` Ran the performance tests with no changes detected: $ asv continuous -b 'stat_op.*rolling' upstream/master GH12373 · Creating environments · Discovering benchmarks ·· Uninstalling from py2.7-Cython...
https://api.github.com/repos/pandas-dev/pandas/pulls/12481
2016-02-27T15:27:12Z
2016-04-18T17:52:32Z
null
2016-04-18T18:04:39Z
TST: Add name vaidation for dt accessor
diff --git a/pandas/tests/series/test_datetime_values.py b/pandas/tests/series/test_datetime_values.py index c6593d403ffcc..d4121fb86de79 100644 --- a/pandas/tests/series/test_datetime_values.py +++ b/pandas/tests/series/test_datetime_values.py @@ -52,7 +52,7 @@ def get_expected(s, name): result = ...
Closes #10712. This is already fixed in other PR, thus added explicit tests.
https://api.github.com/repos/pandas-dev/pandas/pulls/12479
2016-02-27T06:09:33Z
2016-02-27T15:09:04Z
null
2016-02-27T18:17:52Z
BUG: indexing operation changes dtype, #10503
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 8a48314de5f77..9e62ba22d8f96 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -362,6 +362,89 @@ New Behavior: s.index print(s.to_csv(path=None)) +Changes to dtype assignment behaviors +^^^...
- [ ] closes #10503 - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12477
2016-02-27T01:00:05Z
2016-02-27T17:52:43Z
null
2016-02-27T17:53:27Z
Add a free-form summary function to describe a dataframe (in the vein of R)
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index f850bfba4f90e..c2420a36ad9e7 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -3,6 +3,7 @@ import operator import weakref import gc +from collections import OrderedDict import numpy as np import pandas.lib as lib @@ -4837,6 +48...
First cut. Please let me know your thoughts and thanks again to @jreback for teaching me. Looks like this ``` A_cat B_str C_bool D_num \ 0 count=24 count=24 count=24 count=24 1 cardinality=2 cardinality=4 ...
https://api.github.com/repos/pandas-dev/pandas/pulls/12476
2016-02-27T00:40:15Z
2016-05-07T19:07:35Z
null
2016-05-07T19:07:36Z
ERR: Better error reporting with .transform and an invalid output per GH 10165
diff --git a/.travis.yml b/.travis.yml index a408f40f5dc3c..e08bd3b0413c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ env: git: # for cloning - depth: 200 + depth: 300 matrix: fast_finish: true diff --git a/appveyor.yml b/appveyor.yml index f6bf947892093..650137b995121 100644 --- ...
- [ ] closes #10165 - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12474
2016-02-26T22:59:24Z
2016-02-27T16:10:01Z
null
2016-02-27T16:10:12Z
DOC: expanding comparison with R section
diff --git a/doc/source/comparison_with_r.rst b/doc/source/comparison_with_r.rst index 0841f3354d160..fad3d034c8d17 100644 --- a/doc/source/comparison_with_r.rst +++ b/doc/source/comparison_with_r.rst @@ -31,6 +31,79 @@ For transfer of ``DataFrame`` objects from ``pandas`` to R, one option is to use HDF5 files, see :r...
- [ ] closes #9815 - [ ] tests added / passed - [ ] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry This is the beginning of a quick reference section. It's incomplete, just did a rough translation of http://nbviewer.jupyter.org/urls/gist.githubusercontent.com/TomAugspurger/6e052140eaa5fdb6e8c0...
https://api.github.com/repos/pandas-dev/pandas/pulls/12472
2016-02-26T20:54:16Z
2016-04-27T14:01:13Z
null
2016-04-27T14:02:18Z
CLN/BUILD: Fix warnings on build
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 70a1ad4a335ea..309e8b35e2df1 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 ~~~~~~~~~ + +- Removed some compiler warnings (:issue:`5385`) diff...
- [x] progress towards closing #5385 - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12471
2016-02-26T20:43:54Z
2016-02-27T14:55:55Z
null
2016-02-27T14:56:53Z
CLN: consolidate Series.quantile and DataFrame.quantile
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 449068eff4f43..79db9f259aff4 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -62,7 +62,8 @@ import pandas.algos as _algos from pandas.core.config import get_option -from pandas import _np_version_under1p9 + +from textwrap import dedent ...
- closes #10207 - Slightly modified test in tests/series/tests_analytics.py:575 to standardize behavior across Series and DataFrame - passes `git diff upstream/master | flake8 --diff`
https://api.github.com/repos/pandas-dev/pandas/pulls/12469
2016-02-26T20:02:49Z
2016-04-03T17:03:18Z
null
2016-04-03T17:03:18Z
MAINT: Nicely inform users if they're missing hard dependencies.
diff --git a/pandas/__init__.py b/pandas/__init__.py index b8c1f082b6cb3..b34edb1688e5a 100644 --- a/pandas/__init__.py +++ b/pandas/__init__.py @@ -4,8 +4,21 @@ __docformat__ = 'restructuredtext' +# Let users know if they're missing any of our hard dependencies, ie. don't fail fast. +hard_dependencies = ("numpy",...
Closes #12176 - [✓] tests pass Manually tested with condas environments w/ all and no dependencies. - [✓] passes `git diff upstream/master | flake8 --diff` - [✗] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12468
2016-02-26T19:58:05Z
2016-02-27T14:28:05Z
null
2016-02-27T14:28:15Z
Confirm timedelta algos work
diff --git a/doc/source/contributing.rst b/doc/source/contributing.rst index 9ba4915d235ee..c26fd8255df53 100644 --- a/doc/source/contributing.rst +++ b/doc/source/contributing.rst @@ -219,7 +219,8 @@ For Python 2.7, you can install the ``mingw`` compiler which will work equivalen or use the `Microsoft Visual Studio...
- closes #5986 - 3 tests added / passed: rank, factorize, mode - confirm the other 3 tests already exist: unique, quantile, value_counts
https://api.github.com/repos/pandas-dev/pandas/pulls/12465
2016-02-26T18:51:34Z
2016-02-27T15:22:59Z
null
2016-02-27T15:23:16Z
ENH: add missing methods to .dt for Period, resolves #8848
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 8a48314de5f77..6e9574b6ee4f7 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -431,6 +431,7 @@ Other enhancements - ``pivot_table()`` now accepts most iterables for the ``values`` parameter (:issue...
- [x] closes #8848 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Not 100% complete, but putting this in as a place to house comments: - I am not sure where to put the whatsnew entry - 0.18.0 or 0.18.1? - Also not sure if you'd like tests on the actual usage in...
https://api.github.com/repos/pandas-dev/pandas/pulls/12463
2016-02-26T18:42:14Z
2016-02-27T16:02:50Z
null
2016-02-27T18:05:01Z
BUG: fix df concat containing mix of localized and non-localized Timestamps
diff --git a/pandas/tests/frame/test_combine_concat.py b/pandas/tests/frame/test_combine_concat.py index 77077440ea301..2600b8c870ba7 100644 --- a/pandas/tests/frame/test_combine_concat.py +++ b/pandas/tests/frame/test_combine_concat.py @@ -46,6 +46,28 @@ def test_combine_multiple_frames_dtypes(self): expected...
BUG: fix issue with concat of localized timestamps TST: test concat of dataframes with non-None timezone columns
https://api.github.com/repos/pandas-dev/pandas/pulls/12462
2016-02-26T18:23:29Z
2016-04-06T13:00:10Z
null
2016-04-06T13:00:19Z
ENH: Improve error message for empty data constructor. #8020
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 51fa0482accca..e15a5de23f79a 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -869,6 +869,8 @@ Other API Changes - ``.to_latex`` and ``.to_html`` gain a ``decimal`` parameter like ``.to_csv``; th...
- [X] closes #8020 - [X] tests added / passed - [X] passes `git diff upstream/master | flake8 --diff` - [X] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/12461
2016-02-26T18:21:08Z
2016-02-27T14:46:28Z
null
2016-02-27T14:46:40Z
ENH: replace uses of np.isscalar with pd.lib.isscalar
diff --git a/pandas/computation/ops.py b/pandas/computation/ops.py index 0d528de9f55b6..b80823de6de05 100644 --- a/pandas/computation/ops.py +++ b/pandas/computation/ops.py @@ -10,6 +10,7 @@ import pandas as pd from pandas.compat import PY3, string_types, text_type import pandas.core.common as com +import pandas.lib...
Closes #8708 Added note that pd.lib.isscalar() returns True for None, which is different from np.isscalar().
https://api.github.com/repos/pandas-dev/pandas/pulls/12459
2016-02-26T18:06:59Z
2016-02-27T14:41:27Z
null
2016-02-27T16:30:24Z
describe() outputs bool as categorical
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index f850bfba4f90e..46e8a0a5b2d3f 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -4875,26 +4875,27 @@ def describe_numeric_1d(series, percentiles): def describe_categorical_1d(data): names = ['count', 'unique'] ...
- [ ] closes #6625 - [ ] tests passed so far - [ ] passes `git diff upstream/master | flake8 --diff`
https://api.github.com/repos/pandas-dev/pandas/pulls/12458
2016-02-26T17:58:41Z
2016-02-27T15:33:36Z
null
2016-02-27T15:33:54Z
Update what's new page with relevant issues for df.query() with in-pl…
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 8a48314de5f77..30b8b05e04d5f 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -785,7 +785,7 @@ Changes to eval ^^^^^^^^^^^^^^^ In prior versions, new columns assignments in an ``eval`` expressio...
- [x] closes #10486 - [N/A] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry …ace operator The relevant issues added are : BUG: query with invalid dtypes should fallback to python engine #10486 BUG: query modifies the frame when you compare with `=` #8664
https://api.github.com/repos/pandas-dev/pandas/pulls/12456
2016-02-26T15:36:40Z
2016-05-07T17:12:30Z
null
2016-05-07T17:12:30Z
BUG: resample fixes
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index bdc20d964a06a..4dde6bcdb5038 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -705,7 +705,7 @@ other anchored offsets like ``MonthBegin`` and ``YearBegin``. Resample API ^^^^^^^^^^^^ -Like the c...
make sure .resample(...).plot() warns and returns a correct plotting object make sure that .groupby(...).resample(....) is hitting warnings when appropriate closes #12448
https://api.github.com/repos/pandas-dev/pandas/pulls/12449
2016-02-26T02:00:01Z
2016-03-08T23:39:51Z
null
2016-04-19T13:00:54Z
DOC: Add examples and notes to empty documentation
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 14d788fdded7e..f850bfba4f90e 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -842,7 +842,43 @@ def __contains__(self, key): @property def empty(self): - """True if NDFrame is entirely empty [no items]""" + "...
- [x] closes #12393 - [x] passes `git diff upstream/master | flake8 --diff` Added notes and examples to provide clarity around the issue discussed in #12393. This is my first contribution to pandas, so let me know if I need to fix anything.
https://api.github.com/repos/pandas-dev/pandas/pulls/12442
2016-02-24T20:16:00Z
2016-02-26T02:13:43Z
null
2016-02-26T02:14:46Z
DOC: fix links in contributing.rst
diff --git a/doc/source/contributing.rst b/doc/source/contributing.rst index 573e83f5e1d5f..9ba4915d235ee 100644 --- a/doc/source/contributing.rst +++ b/doc/source/contributing.rst @@ -217,10 +217,10 @@ For Python 2.7, you can install the ``mingw`` compiler which will work equivalen conda install -n pandas_dev...
fixup for #12428
https://api.github.com/repos/pandas-dev/pandas/pulls/12439
2016-02-24T15:59:05Z
2016-02-24T16:23:18Z
null
2016-02-24T16:23:18Z
DOC:Fix micro-typo
diff --git a/doc/source/visualization.rst b/doc/source/visualization.rst index 4378d182b3128..e2d80fbd9eb94 100644 --- a/doc/source/visualization.rst +++ b/doc/source/visualization.rst @@ -1641,7 +1641,7 @@ We import the rplot API: Examples ~~~~~~~~ -RPlot was an API for producing Trellis plots. These plots allow y...
Removes a extraneous µ from the docs.
https://api.github.com/repos/pandas-dev/pandas/pulls/12431
2016-02-23T21:30:23Z
2016-02-23T21:59:56Z
null
2016-02-23T21:59:59Z
DOC: improve documentation for building extensions on windows
diff --git a/doc/source/contributing.rst b/doc/source/contributing.rst index 05d5eb67d7a32..573e83f5e1d5f 100644 --- a/doc/source/contributing.rst +++ b/doc/source/contributing.rst @@ -169,10 +169,9 @@ For a python 3 environment:: conda create -n pandas_dev python=3 --file ci/requirements_dev.txt +.. warning...
https://api.github.com/repos/pandas-dev/pandas/pulls/12428
2016-02-23T16:39:12Z
2016-02-24T13:33:21Z
null
2016-02-24T15:56:38Z
Notes about unique vs cat.categories #12278
diff --git a/doc/source/categorical.rst b/doc/source/categorical.rst index 317641f1b3eea..bb8a896a5b91c 100644 --- a/doc/source/categorical.rst +++ b/doc/source/categorical.rst @@ -182,6 +182,18 @@ It's also possible to pass in the categories in a specific order: indicate an ordered ``Categorical``. +.. note::...
- [x] closes #12278 - [ ] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] adding notes about .unique() and .cat.categories (as suggested in [#12278 (comment)](https://github.com/pydata/pandas/issues/12278#issuecomment-182445522))
https://api.github.com/repos/pandas-dev/pandas/pulls/12421
2016-02-22T18:48:30Z
2016-02-23T14:57:16Z
null
2016-02-23T14:57:23Z
DOC: xray -> xarray
diff --git a/doc/source/ecosystem.rst b/doc/source/ecosystem.rst index 683cb671bca9d..dd3e86577d228 100644 --- a/doc/source/ecosystem.rst +++ b/doc/source/ecosystem.rst @@ -172,10 +172,10 @@ Geopandas extends pandas data objects to include geographic information which su geometric operations. If your work entails maps...
@shoyer just came across this in the docs. These should be the only (remaining) mentions of xray
https://api.github.com/repos/pandas-dev/pandas/pulls/12419
2016-02-22T14:45:12Z
2016-02-22T16:44:53Z
null
2016-02-22T17:04:02Z
COMPAT: fixes for numpy compat
diff --git a/pandas/src/sparse.pyx b/pandas/src/sparse.pyx index 579d473cae1b3..6744c6e5a4e07 100644 --- a/pandas/src/sparse.pyx +++ b/pandas/src/sparse.pyx @@ -7,6 +7,15 @@ import numpy as np import operator import sys +from distutils.version import LooseVersion + +# numpy versioning +_np_version = np.version.shor...
test_period and slicing exception with nan compat in sparse for floordiv with 0, now returns NaN rather than inf closes #12406
https://api.github.com/repos/pandas-dev/pandas/pulls/12418
2016-02-22T13:47:14Z
2016-02-22T16:44:03Z
null
2016-02-22T16:44:03Z
ENH decimal parameter to to_latex and to_html, #12031
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index b3bbc5cf5ef8c..71cf61c8f8f82 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -867,6 +867,9 @@ Other API Changes - Statistical functions for ``NDFrame`` objects will now raise if non-numpy-compat...
- [x] closes #12031 - [x] tests added / passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry I just pass on the `decimal` parameter. All the machinery was already in place.
https://api.github.com/repos/pandas-dev/pandas/pulls/12417
2016-02-22T11:12:07Z
2016-02-23T18:50:26Z
null
2016-02-23T19:29:43Z
MAINT: More informative TypeError for IndexEngine.get_loc
diff --git a/pandas/index.pyx b/pandas/index.pyx index a7e613ee867c7..dad2b26e13412 100644 --- a/pandas/index.pyx +++ b/pandas/index.pyx @@ -136,7 +136,7 @@ cdef class IndexEngine: cpdef get_loc(self, object val): if is_definitely_invalid_key(val): - raise TypeError + raise TypeErr...
Title is self-explanatory. Closes #12218.
https://api.github.com/repos/pandas-dev/pandas/pulls/12414
2016-02-22T07:14:23Z
2016-02-24T00:05:40Z
null
2016-02-24T03:21:50Z
BUG: Matched SearchedSorted Signature with NumPy's
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 0118dea6f8867..d9c226176c30e 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -43,6 +43,7 @@ Enhancements API changes ~~~~~~~~~~~ +- ``searchsorted`` for ``Index`` and ``TimedeltaIndex`` now acc...
Title is self-explanatory. Closes #12238.
https://api.github.com/repos/pandas-dev/pandas/pulls/12413
2016-02-22T06:50:35Z
2016-03-17T23:46:50Z
null
2016-03-17T23:55:10Z
BUG: date_range breaks with tz-aware start/end dates and closed intervals #12409
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index e944189e2a338..97b3ef7a22b22 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1022,7 +1022,7 @@ Bug Fixes - Bug in ``GroupBy.size`` when data-frame is empty. (:issue:`11699`) - Bug in ``Period.en...
- [X] closes #12409 - [X] tests added / passed - [X] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry - not added since this fixes a pre-release bug do comparison for closed intervals on UTC basis prior to tz conversion added tests for date_range covering case of tz-aware start/end dates with cl...
https://api.github.com/repos/pandas-dev/pandas/pulls/12410
2016-02-21T19:51:40Z
2016-02-23T14:54:21Z
null
2016-02-23T14:54:21Z
Doc fix for sas7bdat
diff --git a/doc/source/io.rst b/doc/source/io.rst index bbfa711eb4445..002fdb6e32b87 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -4542,24 +4542,6 @@ whether imported ``Categorical`` variables are ordered. a ``Categorical`` with string categories for the values that are labeled and numeric categ...
Minor doc fixes following merge of PR #12015.
https://api.github.com/repos/pandas-dev/pandas/pulls/12407
2016-02-21T16:20:54Z
2016-02-22T11:18:32Z
null
2016-02-22T11:18:41Z
ENH: allow index to be referenced by name
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index b3bbc5cf5ef8c..0f0c925b366a5 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -432,6 +432,7 @@ Other enhancements - Added Google ``BigQuery`` service account authentication support, which enables a...
- [x] closes #8162 and #10816 - [x] tests added - [x] tests passed - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry Still missing are groupby support (#5677) and `.loc` support. Also, I wasn't sure if this deserves more than just a line in whatsnew, so I kept it small for now. With a stan...
https://api.github.com/repos/pandas-dev/pandas/pulls/12404
2016-02-21T07:16:43Z
2016-05-07T17:45:31Z
null
2016-05-07T20:42:54Z
BUG: Concatenation of DFs with all NaT columns and TZ-aware ones breaks #12396
diff --git a/pandas/core/internals.py b/pandas/core/internals.py index abfc5c989056e..188b00348b4e1 100644 --- a/pandas/core/internals.py +++ b/pandas/core/internals.py @@ -4905,8 +4905,12 @@ def get_reindexed_values(self, empty_dtype, upcasted_na): if len(values) and values[0] is None: ...
- [X] closes #12396 - [X] tests added / passed - [X] passes `git diff upstream/master | flake8 --diff` - [X] whatsnew entry - `concat` to handle tz-aware all NaT/mixed cases - added unit tests
https://api.github.com/repos/pandas-dev/pandas/pulls/12403
2016-02-20T23:06:11Z
2016-11-16T22:22:21Z
null
2018-01-20T02:21:29Z
ENH: Series between inclusive pair (GH: 12398)
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index e944189e2a338..4cb0627b623aa 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -417,6 +417,7 @@ Other enhancements - ``sys.getsizeof(obj)`` returns the memory usage of a pandas object, including the...
- [ X ] closes #12398 - [ X ] tests added / passed - [ X ] passes `git diff upstream/master | flake8 --diff` - [ X ] whatsnew entry Amends pandas.Series.between method to set different inclusive/exclusive endpoints. inclusive : Boolean to indicate whether or not to include both the left and right endpoin...
https://api.github.com/repos/pandas-dev/pandas/pulls/12402
2016-02-20T20:34:31Z
2016-04-29T22:08:57Z
null
2023-05-11T01:13:23Z
COMPAT: Objects construction compat with xarray.Dataset
diff --git a/pandas/core/common.py b/pandas/core/common.py index 341bd3b4cc845..50392e2f5b947 100644 --- a/pandas/core/common.py +++ b/pandas/core/common.py @@ -10,6 +10,8 @@ import numpy as np import pandas.lib as lib import pandas.tslib as tslib + +import pandas as pd from pandas import compat from pandas.compat...
- [x] closes #12353 - [x] tests added - [ ] tests passed - [x] passes `git diff upstream/master | flake8 --diff` - [ ] whatsnew entry I'm changed the dict / mapping issue, but I can't get this part working (so the tests fail at the moment): > But pd.Series(dict(xr.Dataset({'a': 2, 'b': 3}))) doesn't work either, bec...
https://api.github.com/repos/pandas-dev/pandas/pulls/12400
2016-02-20T06:59:54Z
2017-08-17T10:28:43Z
null
2017-08-17T10:28:43Z
Add example usage to DataFrame.filter
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 93c76bc80684f..875ba907823c6 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -537,6 +537,7 @@ Backwards incompatible API changes - the order of keyword arguments to text file parsing functions (``...
Updates doc comments for `DataFrame.filter` and adds usage examples. Fixed errors identified by `flake8` and correctly rebase my branch before issuing PR. <dl class="method"> <dt id="pandas.DataFrame.filter"> <code class="descclassname">DataFrame.</code><code class="descname">filter</code><span class="sig-paren">(</sp...
https://api.github.com/repos/pandas-dev/pandas/pulls/12399
2016-02-20T00:49:44Z
2016-06-03T21:01:24Z
null
2016-06-03T21:01:39Z
Doc/df filter
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 85f23b988778f..f395b0a034332 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -15,6 +15,7 @@ from pandas.tseries.index import DatetimeIndex from pandas.tseries.period import PeriodIndex from pandas.core.internals import BlockManage...
Updates doc comments for `DataFrame.filter` and adds usage examples. <dl class="method"> <dt id="pandas.DataFrame.filter"> <code class="descclassname">DataFrame.</code><code class="descname">filter</code><span class="sig-paren">(</span><em>items=None</em>, <em>like=None</em>, <em>regex=None</em>, <em>axis=None</em><s...
https://api.github.com/repos/pandas-dev/pandas/pulls/12395
2016-02-19T18:44:32Z
2016-02-19T23:59:24Z
null
2016-02-20T18:19:05Z
BUG: Return UTC DateTimeIndex when specified in to_datetime
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index e944189e2a338..aab9e6125732a 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1108,3 +1108,4 @@ Bug Fixes - Bug in ``DataFrame.apply`` in which reduction was not being prevented for cases in whi...
Title is self-explanatory. Closes #11934.
https://api.github.com/repos/pandas-dev/pandas/pulls/12391
2016-02-19T03:36:30Z
2016-02-20T18:27:34Z
null
2016-02-21T00:41:34Z
TST: skip bool_ops_scalar tests for numexpr if numpy >= 1.11
diff --git a/pandas/computation/tests/test_eval.py b/pandas/computation/tests/test_eval.py index 43d2faac36c2f..fb4d56a5eaf99 100644 --- a/pandas/computation/tests/test_eval.py +++ b/pandas/computation/tests/test_eval.py @@ -1871,6 +1871,8 @@ def test_more_than_one_expression_raises(): def check_bool_ops_fails_on_sc...
numpy >= 1.11failing on these
https://api.github.com/repos/pandas-dev/pandas/pulls/12389
2016-02-19T02:25:02Z
2016-02-19T13:06:42Z
null
2016-02-19T13:06:42Z
Update groupby.rst
diff --git a/doc/source/groupby.rst b/doc/source/groupby.rst index 1d1dd59efff52..02d4a924a92fc 100644 --- a/doc/source/groupby.rst +++ b/doc/source/groupby.rst @@ -217,7 +217,7 @@ the length of the ``groups`` dict, so it is largely just a convenience: weight = np.random.normal(166, 20, size=n) height = np.rand...
Fixed typo (replaced tm with np.random as there is no tm module in this doc) so that the choice method at line 220 will work. @ellisonbg
https://api.github.com/repos/pandas-dev/pandas/pulls/12385
2016-02-18T21:31:40Z
2016-02-18T21:55:07Z
null
2016-02-18T21:55:16Z
Use correct random choice function in code snippet
diff --git a/doc/source/groupby.rst b/doc/source/groupby.rst index 1d1dd59efff52..02d4a924a92fc 100644 --- a/doc/source/groupby.rst +++ b/doc/source/groupby.rst @@ -217,7 +217,7 @@ the length of the ``groups`` dict, so it is largely just a convenience: weight = np.random.normal(166, 20, size=n) height = np.rand...
A hidden code snippet uses `tm.choice()` when it should use `np.random.choice()`
https://api.github.com/repos/pandas-dev/pandas/pulls/12384
2016-02-18T21:25:40Z
2016-02-18T21:42:50Z
null
2016-02-18T22:01:41Z
Fix #12373: rolling functions raise ValueError on float32 data
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 7f253ae437d9f..320520582f1e2 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 #12373 - [x] tests added - [x] passes `git diff upstream/master | flake8 --diff` - [x] whatsnew entry added - [x] add test for various other dtypes
https://api.github.com/repos/pandas-dev/pandas/pulls/12376
2016-02-18T04:52:09Z
2016-03-06T00:45:44Z
null
2016-03-06T01:11:31Z
API: correctly provide __name__ for cum functions
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index c14a0c0961a2d..87525e6edfba0 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -103,6 +103,7 @@ API changes - ``CParserError`` is now a ``ValueError`` instead of just an ``Exception`` (:issue:`12551...
closes #12021 ``` (py3.5)[Tue Apr 05 08:16:18 ~/miniconda/envs/py3.5/pandas]$ ipython Python 3.5.1 |Continuum Analytics, Inc.| (default, Dec 7 2015, 11:24:55) In [1]: pd.Series.sum.__qualname__ Out[1]: 'Series.sum' In [2]: pd.Series.cumsum.__qualname__ Out[2]: 'Series.cumsum' In [3]: pd.Series.cumsum.__module__ O...
https://api.github.com/repos/pandas-dev/pandas/pulls/12372
2016-02-17T22:34:50Z
2016-04-05T16:17:48Z
null
2016-04-05T16:35:49Z
API: allow scalar setting/getting via float indexer on integer indexes
diff --git a/doc/source/advanced.rst b/doc/source/advanced.rst index beb803282ebe3..4d1354a515b1c 100644 --- a/doc/source/advanced.rst +++ b/doc/source/advanced.rst @@ -717,6 +717,10 @@ values NOT in the categories, similarly to how you can reindex ANY pandas index. Int64Index and RangeIndex ~~~~~~~~~~~~~~~~~~~~~~~~~...
closes #12333
https://api.github.com/repos/pandas-dev/pandas/pulls/12370
2016-02-17T19:31:24Z
2016-03-08T23:38:19Z
null
2016-03-08T23:38:19Z
BUG #12336: Fix init categorical series with scalar value
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index fa959f651d135..e944189e2a338 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1107,3 +1107,4 @@ Bug Fixes - Bug in ``crosstab`` where arguments with non-overlapping indexes would return a ``KeyErr...
closes #12336 Changed the tests to match the other ones in `test_fromValue`.
https://api.github.com/repos/pandas-dev/pandas/pulls/12368
2016-02-17T16:36:01Z
2016-02-18T13:15:08Z
null
2016-02-18T13:15:13Z
fmt in TimeFormatter is now changeable
diff --git a/pandas/tseries/converter.py b/pandas/tseries/converter.py index 8ccfdfa05e9b5..c7b663ba8bcc3 100644 --- a/pandas/tseries/converter.py +++ b/pandas/tseries/converter.py @@ -83,9 +83,9 @@ class TimeFormatter(Formatter): def __init__(self, locs): self.locs = locs + self.fmt = '%H:%M:%S'...
`datetime.time` objects are useful as index values, e.g. in a data frame containing data of an experiment lasting a few minutes or hours. When plotting such data frame, the x-axis ticks are formatted as `'%H:%M:%S'` as standard. In most cases, either `'%H:%M'` or `'%M:%S'` contains enough information, and the `'%H:%M:%...
https://api.github.com/repos/pandas-dev/pandas/pulls/12367
2016-02-17T15:52:09Z
2016-02-18T13:22:04Z
null
2016-02-18T13:45:46Z
BUG #12336: Fix init categorical series with scalar value
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index fa959f651d135..e44ac4d900d9e 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1107,3 +1107,4 @@ Bug Fixes - Bug in ``crosstab`` where arguments with non-overlapping indexes would return a ``KeyErr...
closes #12336
https://api.github.com/repos/pandas-dev/pandas/pulls/12366
2016-02-17T14:54:21Z
2016-02-17T16:18:04Z
null
2016-02-17T16:18:04Z
BUG: Bug in DataFrame.set_index() with tz-aware Series
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index c749c4540013b..2baa366a29bb1 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1045,7 +1045,7 @@ Bug Fixes - Bug in ``DataFrame.info`` when duplicated column names exist (:issue:`11761`) - Bug in ...
closes #12358
https://api.github.com/repos/pandas-dev/pandas/pulls/12365
2016-02-17T13:16:49Z
2016-02-17T14:29:42Z
null
2016-02-17T14:29:42Z
BUG: resample with nunique
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index c749c4540013b..abb8ef8d2970c 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1035,7 +1035,7 @@ Bug Fixes - Bug in ``pd.concat`` while concatenating tz-aware NaT series. (:issue:`11693`, :issue:`1...
closes #12352
https://api.github.com/repos/pandas-dev/pandas/pulls/12364
2016-02-17T02:49:16Z
2016-02-17T13:22:18Z
null
2016-02-17T13:22:18Z
ENH Consistent apply output when grouping with freq
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 1179a347e4c46..48ec3f8240bcd 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -72,15 +72,39 @@ API changes - ``CParserError`` is now a ``ValueError`` instead of just an ``Exception`` (:issue:`1...
The `BinGrouper.apply` (used by the `TimeGrouper`) and `BaseGrouper.apply` (used by the `Grouper`) have different output types. To make them consistent, remove `BinGrouper.apply` and let it use the same method as the superclass `BaseGrouper`. This requires changing `BinGrouper.groupings` to return an object which looks...
https://api.github.com/repos/pandas-dev/pandas/pulls/12362
2016-02-17T02:04:45Z
2016-04-01T13:13:27Z
null
2016-04-01T13:13:36Z
TST: skip blosc tests on msgpacks if not installed
diff --git a/pandas/io/tests/test_packers.py b/pandas/io/tests/test_packers.py index d0e7d00d79cb0..9387a6069d974 100644 --- a/pandas/io/tests/test_packers.py +++ b/pandas/io/tests/test_packers.py @@ -725,7 +725,11 @@ def read_msgpacks(self, version): f.split('.')[-4][-1] == '2'): ...
https://api.github.com/repos/pandas-dev/pandas/pulls/12361
2016-02-17T01:05:48Z
2016-02-17T02:51:47Z
null
2016-02-17T02:51:47Z
COMPAT: invalid casting to nan
diff --git a/pandas/core/common.py b/pandas/core/common.py index 6165297c13048..b95b44a0394bc 100644 --- a/pandas/core/common.py +++ b/pandas/core/common.py @@ -1098,6 +1098,33 @@ def _infer_dtype_from_scalar(val): return dtype, val +def _is_na_compat(arr, fill_value=np.nan): + """ + Parameters + ----...
closes #12303
https://api.github.com/repos/pandas-dev/pandas/pulls/12360
2016-02-17T00:14:15Z
2016-02-17T13:18:51Z
null
2016-02-17T13:18:51Z
ENH: always make ndarrays from msgpack writable
diff --git a/doc/source/whatsnew/v0.18.1.txt b/doc/source/whatsnew/v0.18.1.txt index 5bb7dfe87562c..037639b51cd26 100644 --- a/doc/source/whatsnew/v0.18.1.txt +++ b/doc/source/whatsnew/v0.18.1.txt @@ -37,7 +37,11 @@ Enhancements +Other Enhancements +^^^^^^^^^^^^^^^^^^ +- ``from_msgpack`` now always gives writea...
Addresses the case where 'compress' was not none. The old implementation would decompress the data and then call np.frombuffer on a bytes object. Because a bytes object is not a mutable buffer, the resulting ndarray had writeable=False. The new implementation ensures that the pandas is the only owner of this new buffer...
https://api.github.com/repos/pandas-dev/pandas/pulls/12359
2016-02-16T23:55:01Z
2016-03-18T00:01:28Z
null
2016-03-18T16:06:36Z
COMPAT: DataFrame construction compat with xarray.Dataset
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 8a3ac4db37d2d..3c9a5868b725e 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -28,7 +28,7 @@ is_sequence, _infer_dtype_from_scalar, _values_from_object, is_list_like, _maybe_box_datetimelike, is_categorical_dtype, is_object_dtype, ...
closes #12353
https://api.github.com/repos/pandas-dev/pandas/pulls/12356
2016-02-16T20:06:40Z
2016-03-23T11:57:39Z
null
2016-03-23T11:57:39Z
docs: add hyperlinks to str.get_dummies
diff --git a/doc/source/text.rst b/doc/source/text.rst index a0cc32ecea531..53567ea25aeac 100644 --- a/doc/source/text.rst +++ b/doc/source/text.rst @@ -381,6 +381,7 @@ Method Summary :meth:`~Series.str.rsplit`,Split strings on delimiter working from the end of the string :meth:`~Series.str.get`,Index into ea...
The description used in the summary table is the first sentence of str_get_dummies()'s docstring, edited to match the style of other summaries. I tried to build this branch locally – the _Method Summary_ section doesn't render with this change and I can't see why, it looks syntactically correct to me…
https://api.github.com/repos/pandas-dev/pandas/pulls/12350
2016-02-16T15:25:49Z
2016-02-17T01:09:18Z
null
2016-02-17T01:09:19Z
TST: confirming tests for #12348
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 47e78cf558a16..00c7d1d31047f 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -615,7 +615,7 @@ other anchored offsets like ``MonthBegin`` and ``YearBegin``. Resample API ^^^^^^^^^^^^ -Like the c...
xref #12348
https://api.github.com/repos/pandas-dev/pandas/pulls/12349
2016-02-16T15:24:36Z
2016-02-16T16:00:18Z
null
2016-02-16T16:00:18Z
ENH: gbq docs update
diff --git a/doc/source/io.rst b/doc/source/io.rst index e2f2301beb078..a42b5dab25578 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -4153,7 +4153,7 @@ to existing tables. .. warning:: To use this module, you will need a valid BigQuery account. Refer to the - `BigQuery Documentation <https://develop...
I've made small documentation update for gbq features.
https://api.github.com/repos/pandas-dev/pandas/pulls/12345
2016-02-16T10:59:35Z
2016-02-16T14:08:19Z
null
2016-02-17T11:21:10Z
BUG: Fix bug where sort_index if unsorted levels.
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 51ff9915fc589..f345c3d822b3e 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -992,3 +992,4 @@ Bug Fixes - Bug in ``crosstab`` where arguments with non-overlapping indexes would return a ``KeyError...
Closes #12261
https://api.github.com/repos/pandas-dev/pandas/pulls/12342
2016-02-16T07:17:22Z
2016-02-16T14:40:53Z
null
2016-02-16T14:40:53Z
COMPAT: dateutil=2.2 compat
diff --git a/ci/requirements-3.4.build b/ci/requirements-3.4.build index 8e2a952b840f7..11901862776bc 100644 --- a/ci/requirements-3.4.build +++ b/ci/requirements-3.4.build @@ -1,5 +1,3 @@ -python-dateutil -pytz numpy=1.8.1 cython libgfortran diff --git a/ci/requirements-3.4.pip b/ci/requirements-3.4.pip index 47a04...
closes #12338
https://api.github.com/repos/pandas-dev/pandas/pulls/12339
2016-02-16T01:19:26Z
2016-02-16T01:47:48Z
null
2016-02-16T01:47:48Z
API: consistency in aggregate groupby results
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 00c7d1d31047f..c749c4540013b 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -615,7 +615,7 @@ other anchored offsets like ``MonthBegin`` and ``YearBegin``. Resample API ^^^^^^^^^^^^ -Like the c...
closes #12334
https://api.github.com/repos/pandas-dev/pandas/pulls/12335
2016-02-15T22:12:16Z
2016-02-17T01:12:08Z
null
2016-02-17T01:12:08Z
BUG: Common NumericIndex.__new__, with fixed name handling
diff --git a/pandas/indexes/category.py b/pandas/indexes/category.py index 4ead02e5bd022..5f681ba618cd4 100644 --- a/pandas/indexes/category.py +++ b/pandas/indexes/category.py @@ -45,6 +45,9 @@ def __new__(cls, data=None, categories=None, ordered=None, dtype=None, if fastpath: return cls._simple_...
closes #12309
https://api.github.com/repos/pandas-dev/pandas/pulls/12331
2016-02-15T17:46:31Z
2016-05-07T17:46:49Z
null
2016-05-17T12:42:29Z
DOC: add addtl docs for FloatIndexing changes in 0.18.0
diff --git a/doc/source/advanced.rst b/doc/source/advanced.rst index 465fbf483b1cc..a28eb39f36917 100644 --- a/doc/source/advanced.rst +++ b/doc/source/advanced.rst @@ -795,12 +795,23 @@ In non-float indexes, slicing using floats will raise a ``TypeError`` In [1]: pd.Series(range(5))[3.5:4.5] TypeError: the sli...
closes #12322
https://api.github.com/repos/pandas-dev/pandas/pulls/12330
2016-02-15T16:57:55Z
2016-02-15T20:05:56Z
null
2016-02-15T20:05:56Z
BUG: addtl fix for compat summary of groupby/resample with dicts
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index c6d02acf75477..b1cb94d131b5b 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -581,7 +581,7 @@ other anchored offsets like ``MonthBegin`` and ``YearBegin``. Resample API ^^^^^^^^^^^^ -Like the c...
closes #9052 closes #12332
https://api.github.com/repos/pandas-dev/pandas/pulls/12329
2016-02-15T14:50:17Z
2016-02-15T20:28:58Z
null
2016-02-15T21:49:01Z
FIX: pivot_table dropna=False drops index level names
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 75a38544fb8eb..67585d156a090 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -540,3 +540,4 @@ of columns didn't match the number of series provided (:issue:`12039`). - Bug in ``.loc`` setitem in...
closes #12133 level names are lost on `MultiIndex.from_arrays(cartesian_product(table.index.levels))`
https://api.github.com/repos/pandas-dev/pandas/pulls/12327
2016-02-15T06:39:20Z
2016-04-14T01:27:52Z
null
2016-05-01T18:30:24Z
DOC/DEPR: remove remaining occurences of mpl_style from docs (GH12190)
diff --git a/doc/source/dsintro.rst b/doc/source/dsintro.rst index d67e31b576654..599724d88bf63 100644 --- a/doc/source/dsintro.rst +++ b/doc/source/dsintro.rst @@ -10,10 +10,7 @@ pd.options.display.max_rows = 15 import matplotlib - try: - matplotlib.style.use('ggplot') - except AttributeError: - ...
@TomAugspurger There were some remaining usages of `options.display.mpl_style` in the docs, so removed those + also removed the reference to it in the text.
https://api.github.com/repos/pandas-dev/pandas/pulls/12326
2016-02-14T12:27:11Z
2016-02-14T17:04:07Z
null
2016-02-14T17:04:07Z
CLN: change getargspec -> signature
diff --git a/pandas/compat/__init__.py b/pandas/compat/__init__.py index d991b3f1fb866..cbdb69d1df8c3 100644 --- a/pandas/compat/__init__.py +++ b/pandas/compat/__init__.py @@ -36,6 +36,7 @@ from unicodedata import east_asian_width import struct import inspect +from collections import namedtuple PY2 = sys.version...
Change signature in compat to be able to return defaults, varargs, kwargs Closes #12171
https://api.github.com/repos/pandas-dev/pandas/pulls/12325
2016-02-14T01:08:35Z
2016-02-17T13:20:15Z
null
2016-02-17T13:20:17Z
DOC: whatsnew link v0.18.0 for float_indexers
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index a1969c75c2d1d..6a059cafc8624 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -21,7 +21,7 @@ Highlights include: - API breaking change to the ``.resample`` method to make it more ``.groupby`` li...
https://api.github.com/repos/pandas-dev/pandas/pulls/12324
2016-02-13T20:24:33Z
2016-02-13T21:33:29Z
null
2016-02-13T21:33:29Z
DOC: some rewording of highlights
diff --git a/doc/source/release.rst b/doc/source/release.rst index 51554b54dfb83..37ca1be631c32 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -48,13 +48,20 @@ users upgrade to this version. Highlights include: -- Window functions are now methods on ``.groupby`` like objects, see :ref:`here <w...
@jreback I proofread the highlights and made some edits (but language is always a bit subjective). Comments?
https://api.github.com/repos/pandas-dev/pandas/pulls/12323
2016-02-13T19:38:38Z
2016-02-13T20:51:09Z
null
2016-02-13T20:51:09Z
WARN: fix some warnings
diff --git a/pandas/tests/frame/test_indexing.py b/pandas/tests/frame/test_indexing.py index d5d0bd32a9356..7c5ec8f35bf44 100644 --- a/pandas/tests/frame/test_indexing.py +++ b/pandas/tests/frame/test_indexing.py @@ -212,9 +212,13 @@ def test_getitem_boolean(self): assert_frame_equal(subframe_obj, subframe) ...
catch warning on reindexing a boolean indexer add some documentation on a na scalar comparison test warning remove warning for plotting multiple on a sub-plot closes #8397
https://api.github.com/repos/pandas-dev/pandas/pulls/12320
2016-02-13T14:34:57Z
2016-02-13T15:18:23Z
null
2016-02-13T15:18:23Z
BUG: Prevent abuse of kwargs in stat functions
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 095c48e54c44c..c6d02acf75477 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -824,6 +824,8 @@ Other API Changes - As part of the new API for :ref:`window functions <whatsnew_0180.enhancements.mo...
Addresses issue #12301 by filtering `kwargs` argument in stat functions to prevent the passage of clearly invalid arguments while at the same time maintaining compatibility with analogous `numpy` functions.
https://api.github.com/repos/pandas-dev/pandas/pulls/12318
2016-02-13T03:32:15Z
2016-02-14T17:08:43Z
null
2016-02-14T19:16:45Z
DOC: whatsnews for style fixes
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index eec7ca1dfd95d..c8b004f2de1af 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -954,6 +954,8 @@ Bug Fixes - Bug in ``DataFrame.duplicated`` and ``drop_duplicates`` causing spurious matches when sett...
Forgot them in https://github.com/pydata/pandas/pull/12162
https://api.github.com/repos/pandas-dev/pandas/pulls/12317
2016-02-13T02:02:00Z
2016-02-13T02:36:00Z
null
2016-11-03T12:38:53Z
TST: validation tests for concat of same timezones
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 2dcb3fbbd5a0d..b1dcd471fb79c 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -918,7 +918,7 @@ Bug Fixes - Bug in not treating ``NaT`` as a missing value in datetimelikes when factorizing & with ``...
closes #12217 xref #12306 which I think fixed
https://api.github.com/repos/pandas-dev/pandas/pulls/12316
2016-02-12T19:09:50Z
2016-02-13T01:15:50Z
null
2016-02-13T01:15:50Z
COMPAT: silence mpl_style warnings
diff --git a/pandas/core/config.py b/pandas/core/config.py index b6f00034429b2..7b1e5b29f1cbb 100644 --- a/pandas/core/config.py +++ b/pandas/core/config.py @@ -127,7 +127,11 @@ def _set_option(*args, **kwargs): root[k] = v if o.cb: - o.cb(key) + if silent: + wit...
closes #12311
https://api.github.com/repos/pandas-dev/pandas/pulls/12315
2016-02-12T18:28:39Z
2016-02-13T02:35:59Z
null
2016-02-13T02:35:59Z
TST: validation tests for resample/groupby preservation
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 2dcb3fbbd5a0d..bc96a0ea30443 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -574,7 +574,7 @@ other anchored offsets like ``MonthBegin`` and ``YearBegin``. Resample API ^^^^^^^^^^^^ -Like the c...
closes #12202
https://api.github.com/repos/pandas-dev/pandas/pulls/12314
2016-02-12T18:25:50Z
2016-02-12T20:40:12Z
null
2016-02-12T20:40:12Z
DOC: Update wrong example in df.first doc-string
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 8882a9cc48ffc..5e171e3339d8b 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -3939,7 +3939,7 @@ def first(self, offset): Examples -------- - ts.last('10D') -> First 10 days + ts.first('10D') -> First...
https://api.github.com/repos/pandas-dev/pandas/pulls/12310
2016-02-12T15:08:37Z
2016-02-12T15:16:06Z
null
2016-02-12T15:16:09Z
Subclassing improvements
diff --git a/pandas/core/base.py b/pandas/core/base.py index 96732a7140f9e..e2b854702ba1c 100644 --- a/pandas/core/base.py +++ b/pandas/core/base.py @@ -943,9 +943,15 @@ def value_counts(self, normalize=False, sort=True, ascending=False, counts : Series """ from pandas.core.algorithms import ...
Addresses indexing issues related to subclassing (#11559). Also made some changes to base, groupby, reshape, strings. So for example, if df was a SubclassedDataFrame and s was a SubclassedSeries `df.groupby('A').apply(lambda x: x)` and `s.value_counts()` would return SubclassedDataFrame and SubclassedSeries instances...
https://api.github.com/repos/pandas-dev/pandas/pulls/12308
2016-02-12T09:30:57Z
2016-11-22T11:44:44Z
null
2016-11-22T11:44:44Z
BUG: fix NaT support for msgpack format.
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index ae5842b22349a..a8bf703cffdcb 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -967,4 +967,9 @@ Bug Fixes - Bug in ``.skew`` and ``.kurt`` due to roundoff error for highly similar values (:issue:`11...
This currently fails with an attribute error trying to get the isoformat of `NaT`
https://api.github.com/repos/pandas-dev/pandas/pulls/12307
2016-02-12T05:12:00Z
2016-02-12T13:47:44Z
null
2016-02-12T13:47:55Z
BUG: GH12290 where tz_convert used values of uninitialized arrays
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index ae5842b22349a..052e8ba0c2f2a 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -906,6 +906,7 @@ Bug Fixes - Bug in ``NaT`` subtraction from ``Timestamp`` or ``DatetimeIndex`` with timezones (:is...
closes #12290
https://api.github.com/repos/pandas-dev/pandas/pulls/12306
2016-02-12T04:06:08Z
2016-02-12T13:39:08Z
null
2016-02-12T13:39:21Z
BUG: Fix subtraction with timezone Series
diff --git a/pandas/core/ops.py b/pandas/core/ops.py index 01df9218c1936..cfd32e9c33c07 100644 --- a/pandas/core/ops.py +++ b/pandas/core/ops.py @@ -487,9 +487,9 @@ def _offset(lvalues, rvalues): # with tz, convert to UTC if self.is_datetime64tz_lhs: - lvalues = lv...
Addresses issue in #12290 with timezone `Series` subtraction in which single element `Series` objects containing tz-aware objects would return a timedelta of zero, even though it visually could not be the case. The bug was traced to the conversion of the contained timezones to UTC, in which the method call was somehow...
https://api.github.com/repos/pandas-dev/pandas/pulls/12302
2016-02-12T00:40:08Z
2016-02-12T06:37:21Z
null
2023-05-11T01:13:22Z
NaT.isoformat() returns 'NaT'.
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index a1056591abd01..f40be1236e3de 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -437,6 +437,8 @@ Backwards incompatible API changes - ``Series.head(0)`` and ``Series.tail(0)`` return empty series, ra...
NaT.isoformat() returning 'NaT' allows users to use Timestamp to rehydrate any _Timestamp object from its isoformat. This means that it is safe to use _Timestamp.isoformat() as a serialization format for timestamps where NaT is a valid value.
https://api.github.com/repos/pandas-dev/pandas/pulls/12300
2016-02-11T23:06:54Z
2016-02-15T22:57:14Z
null
2016-02-15T22:57:28Z
BUG: Make dict iterators real iterators, provide "next()" in Python 2
diff --git a/pandas/compat/__init__.py b/pandas/compat/__init__.py index cbdb69d1df8c3..aade3b8411bb9 100644 --- a/pandas/compat/__init__.py +++ b/pandas/compat/__init__.py @@ -153,31 +153,28 @@ def signature(f): lfilter = builtins.filter -def iteritems(obj, **kwargs): - """replacement for six's iteritems f...
Currently, `compat.itervalues` and friends are not real iterators (under Python 3): compare ``` In [3]: next(six.itervalues({1:2})) Out[3]: 2 ``` with ``` In [4]: next(pd.compat.itervalues({1:2})) --------------------------------------------------------------------------- TypeError T...
https://api.github.com/repos/pandas-dev/pandas/pulls/12299
2016-02-11T22:29:45Z
2016-03-03T21:34:52Z
null
2016-03-03T21:51:50Z
Improvements to str_cat
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 740da62d4f11c..a904e45dd47c9 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -251,6 +251,38 @@ the ``extractall`` method returns all matches. .. _whatsnew_0180.enhancements.rounding: + +Change...
closes #11435 closes #11334. Modified behavior of str_cat to ignore NaN values in the Series by default. Added some doc examples to make the behavior with nan more clear, and catch an error condition when a sep is passed instead of an others (array) as an argument and print a more intuitive error message. This is a...
https://api.github.com/repos/pandas-dev/pandas/pulls/12297
2016-02-11T21:26:45Z
2016-02-12T15:01:29Z
null
2016-02-12T16:52:07Z
Fix #12292 : error when read one empty column from excel file
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index fa959f651d135..61046a9f2626b 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -1088,6 +1088,7 @@ Bug Fixes - Bug in ``Series.plot`` failing when index has a ``CustomBusinessDay`` frequency (:issue:...
Fix #12292 also fix #9002
https://api.github.com/repos/pandas-dev/pandas/pulls/12296
2016-02-11T17:52:01Z
2016-02-27T15:09:05Z
null
2016-02-27T18:42:21Z
BUG: Refine validation of parameters to RangeIndex.__init__
diff --git a/pandas/indexes/range.py b/pandas/indexes/range.py index f4f5745659002..ca12a06b4888e 100644 --- a/pandas/indexes/range.py +++ b/pandas/indexes/range.py @@ -23,13 +23,14 @@ class RangeIndex(Int64Index): Parameters ---------- - start : int (default: 0) + start : int (default: 0), or other R...
closes #12288
https://api.github.com/repos/pandas-dev/pandas/pulls/12295
2016-02-11T15:21:45Z
2016-02-12T14:38:36Z
null
2016-02-12T15:39:40Z
BUG: Series.plot() doesn't work with CustomBusinessDay frequency
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index ae5842b22349a..1b9a6d50db161 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -950,6 +950,7 @@ Bug Fixes - Bug in ``.plot`` potentially modifying the ``colors`` input when the number of columns...
Closes #7222 Missing freqstr 'C' in `_period_code_map` I found `pandas/tseries/tests/test_frequencies.py:TestFrequencyCode.test_freq_code` cover this change.
https://api.github.com/repos/pandas-dev/pandas/pulls/12294
2016-02-11T15:13:40Z
2016-02-12T14:30:24Z
null
2016-02-12T14:30:34Z
ENH: add empty() methods for DataFrame and Series
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 324f30ed00bed..a73b5a9736e07 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -29,6 +29,7 @@ _maybe_box_datetimelike, is_categorical_dtype, is_object_dtype, is_internal_type, is_datetimetz, _possibly_infer_to_datetimelike, _dic...
Added `empty()` methods to the `Series` and `DataFrame` classes analogous to the `empty()` function in the `numpy` library that can also accept `scipy` duck-type `dtypes` in addition to `numpy` `dtypes`.
https://api.github.com/repos/pandas-dev/pandas/pulls/12291
2016-02-11T11:18:36Z
2016-02-11T12:02:49Z
null
2023-05-11T01:13:22Z
BUG: provide chunks with progressively numbered (default) indices
diff --git a/doc/source/whatsnew/v0.19.0.txt b/doc/source/whatsnew/v0.19.0.txt index 317383e866464..5cc17216fd8f2 100644 --- a/doc/source/whatsnew/v0.19.0.txt +++ b/doc/source/whatsnew/v0.19.0.txt @@ -596,6 +596,40 @@ New Behavior: idx1.difference(idx2) idx1.symmetric_difference(idx2) +.. _whatsnew_0190.api.a...
closes #12185 Notice the test I fix was indeed wrong - I had written that line as a workaround waiting for this fix.
https://api.github.com/repos/pandas-dev/pandas/pulls/12289
2016-02-11T09:45:34Z
2016-07-29T00:15:15Z
null
2016-07-29T08:19:14Z
BUG: Fixes KeyError when indexes don't overlap.
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index ac4d21e78b4b3..858c590720415 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -954,3 +954,4 @@ Bug Fixes - Bug in ``.skew`` and ``.kurt`` due to roundoff error for highly similar values (:issue:`11...
Closes #10291
https://api.github.com/repos/pandas-dev/pandas/pulls/12287
2016-02-11T06:00:43Z
2016-02-12T03:02:26Z
null
2016-02-15T06:43:33Z
BUG: Allow 'apply' to be used with non-numpy-dtype DataFrames
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index ae5842b22349a..542402b92364e 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -967,4 +967,7 @@ Bug Fixes - Bug in ``.skew`` and ``.kurt`` due to roundoff error for highly similar values (:issue:`11...
Addresses issue in #12244 in which a non-numpy-dtype for DataFrame.values causes a `TypeError` to be thrown in the `reduce == True` case for `DataFrame.apply`. Resolved by first passing `DataFrame.values` through `Series` initialization and taking its `values` attribute, which is an `ndarray` and hence will have a val...
https://api.github.com/repos/pandas-dev/pandas/pulls/12284
2016-02-10T17:47:21Z
2016-02-12T13:42:08Z
null
2016-02-12T14:27:12Z
DOC: extract/extractall clarifications
diff --git a/doc/source/text.rst b/doc/source/text.rst index c8a878747a9b7..a0cc32ecea531 100644 --- a/doc/source/text.rst +++ b/doc/source/text.rst @@ -196,9 +196,9 @@ DataFrame with one column per group. Elements that do not match return a row filled with ``NaN``. Thus, a Series of messy strings can be "converted" ...
This PR clarifies the new documentation for extract and extractall. It was requested by @jreback in https://github.com/pydata/pandas/pull/11386#issuecomment-182105142
https://api.github.com/repos/pandas-dev/pandas/pulls/12281
2016-02-10T13:47:37Z
2016-02-10T16:22:36Z
null
2016-02-10T16:22:59Z
API: to_msgpack and read_msgpack encoding defaults to utf-8
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index ec002fae3b4b9..2071ec2985748 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -346,6 +346,7 @@ Backwards incompatible API changes - ``DataFrame.round()`` leaves non-numeric columns unchanged in its...
closes #12170
https://api.github.com/repos/pandas-dev/pandas/pulls/12277
2016-02-10T10:31:03Z
2016-02-10T16:20:49Z
null
2016-02-10T16:20:58Z
Hdf warning
diff --git a/doc/source/io.rst b/doc/source/io.rst index 64967f1979807..ccd38e241a4f1 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -2895,6 +2895,26 @@ everything in the sub-store and BELOW, so be *careful*. .. _io.hdf5-types: + +.. warning:: Hierarchical keys cannot be retrieved as dotted (attribute) ...
In accordance with #12268 this is now a separate PR. I think that this warning could be useful either way for no non-daily hdf user: - Telling that string method is preferred - Adding a warning
https://api.github.com/repos/pandas-dev/pandas/pulls/12276
2016-02-10T09:13:59Z
2016-04-23T13:05:57Z
null
2016-04-23T13:05:58Z
BUG: option to avoid latex in qtconsole #12182
diff --git a/doc/source/options.rst b/doc/source/options.rst index 0b2ba03a441a2..d00ba047a56a6 100644 --- a/doc/source/options.rst +++ b/doc/source/options.rst @@ -307,6 +307,9 @@ display.large_repr truncate For DataFrames exceeding max_rows/max_co or switch to the ...
closes #12182
https://api.github.com/repos/pandas-dev/pandas/pulls/12275
2016-02-10T00:59:40Z
2016-02-10T18:51:40Z
null
2016-02-10T18:52:27Z
DEPR: remove order kw from .factorize(), xref #6930
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 8fa28fa422f64..c16947d16635a 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -787,6 +787,7 @@ Removal of prior version deprecations/changes - Removal of the ``read_frame`` and ``frame_query`` (bot...
xref #6930
https://api.github.com/repos/pandas-dev/pandas/pulls/12274
2016-02-10T00:30:58Z
2016-02-10T03:57:37Z
null
2016-02-10T03:58:21Z
Fix #12169 - Resample category data with timedelta index
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index 421822380c2da..3b181bd874c19 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -796,3 +796,5 @@ Bug Fixes - Bug in ``.skew`` and ``.kurt`` due to roundoff error for highly similar values (:issue:`11...
closes #12169
https://api.github.com/repos/pandas-dev/pandas/pulls/12271
2016-02-09T17:42:12Z
2016-02-10T17:29:34Z
null
2016-02-10T23:06:42Z
Fix #12037 Error when Resampling using pd.tseries.offsets.Nano as period
diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt index ec002fae3b4b9..3c7ec83b959fe 100644 --- a/doc/source/whatsnew/v0.18.0.txt +++ b/doc/source/whatsnew/v0.18.0.txt @@ -888,3 +888,5 @@ Bug Fixes - Bug in ``.skew`` and ``.kurt`` due to roundoff error for highly similar values (:issue:`11...
Closes #12037
https://api.github.com/repos/pandas-dev/pandas/pulls/12270
2016-02-09T17:02:22Z
2016-02-10T17:37:09Z
null
2016-02-10T23:06:41Z
Respect byteorder in StataReader
diff --git a/pandas/io/stata.py b/pandas/io/stata.py index a878829a60404..e5051aef9c4ea 100644 --- a/pandas/io/stata.py +++ b/pandas/io/stata.py @@ -1349,7 +1349,7 @@ def _read_strls(self): buf = buf[0:2] + buf[4:10] else: buf = buf[0:2] + buf[6:] - ...
Partially fix #11282 for s390x
https://api.github.com/repos/pandas-dev/pandas/pulls/12269
2016-02-09T14:08:21Z
2016-03-12T17:53:16Z
null
2016-03-12T17:53:16Z
added pd as namespace
diff --git a/doc/source/io.rst b/doc/source/io.rst index 36d4bd89261c4..15338392ad09e 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -1399,7 +1399,7 @@ Writing to a file, with a date index and a date column dfj2['date'] = Timestamp('20130101') dfj2['ints'] = list(range(5)) dfj2['bools'] = True - ...
more consistent with code in the rest of the document
https://api.github.com/repos/pandas-dev/pandas/pulls/12268
2016-02-09T12:37:03Z
2016-03-13T16:16:59Z
null
2023-05-11T01:13:22Z
Do not raise error when reopening a read-only HDFStore.
diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py index cd8f7699a85d1..4ec3d7a48195b 100644 --- a/pandas/io/pytables.py +++ b/pandas/io/pytables.py @@ -546,23 +546,26 @@ def open(self, mode='a', **kwargs): raise except (ValueError) as e: + if 'is already opened, but in re...
closes #12266
https://api.github.com/repos/pandas-dev/pandas/pulls/12267
2016-02-09T10:58:43Z
2016-02-09T14:49:33Z
null
2017-03-08T17:01:59Z
PEP8: fix sql.py and test_sql.py
diff --git a/pandas/io/sql.py b/pandas/io/sql.py index 072ca86600ea0..c29286016a34f 100644 --- a/pandas/io/sql.py +++ b/pandas/io/sql.py @@ -21,7 +21,6 @@ from pandas.core.base import PandasObject from pandas.core.dtypes import DatetimeTZDtype from pandas.tseries.tools import to_datetime -from pandas.util.decorators...
Master is failing due to my PR https://github.com/pydata/pandas/pull/12205 Strange that it did not fail on travis before merging ?
https://api.github.com/repos/pandas-dev/pandas/pulls/12263
2016-02-08T18:07:31Z
2016-02-08T21:13:52Z
null
2016-02-08T22:17:21Z
BUG: Make Styler ignore None index names to match to_html behaviour
diff --git a/doc/source/html-styling.ipynb b/doc/source/html-styling.ipynb index 1881727001546..77813a03c704a 100644 --- a/doc/source/html-styling.ipynb +++ b/doc/source/html-styling.ipynb @@ -54,7 +54,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 1, "metadata": { "c...
Addresses https://github.com/pydata/pandas/pull/12090#issuecomment-180695902 by making the `Styler` behaviour match regular `to_html` behaviour. This PR is based from #12162. ##### New behaviour <img width="596" alt="screen shot 2016-02-08 at 10 35 23 am" src="https://cloud.githubusercontent.com/assets/3064019/12890...
https://api.github.com/repos/pandas-dev/pandas/pulls/12260
2016-02-08T15:37:34Z
2016-03-03T19:06:28Z
null
2016-03-04T13:35:00Z