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
adding "include" parameter dataframe.from_records
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 79bdad82af5a3..71d92a725f516 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -943,7 +943,7 @@ def to_gbq(self, destination_table, project_id, chunksize=10000, @classmethod def from_records(cls, data, index=None, exclude=None, col...
- closes #15319 - simple adding include parameter for from_records
https://api.github.com/repos/pandas-dev/pandas/pulls/15334
2017-02-07T20:06:02Z
2017-02-08T20:30:53Z
null
2023-05-11T01:15:04Z
TST/STYLE: remove multiprocess nose flags and slight PEP fixes
diff --git a/pandas/__init__.py b/pandas/__init__.py index 2d91c97144e3c..9133e11beaa2b 100644 --- a/pandas/__init__.py +++ b/pandas/__init__.py @@ -15,7 +15,8 @@ missing_dependencies.append(dependency) if missing_dependencies: - raise ImportError("Missing required dependencies {0}".format(missing_depend...
https://github.com/pandas-dev/pandas/pull/13856#issuecomment-278058522
https://api.github.com/repos/pandas-dev/pandas/pulls/15333
2017-02-07T17:27:24Z
2017-02-07T18:52:07Z
null
2017-02-07T18:52:07Z
TST: remove __main__ from all test files
diff --git a/pandas/api/tests/test_api.py b/pandas/api/tests/test_api.py index 410d70c65404f..f925fd792f9ca 100644 --- a/pandas/api/tests/test_api.py +++ b/pandas/api/tests/test_api.py @@ -227,8 +227,3 @@ def test_deprecation_access_obj(self): with tm.assert_produces_warning(FutureWarning, ...
xref #13856
https://api.github.com/repos/pandas-dev/pandas/pulls/15330
2017-02-07T14:47:12Z
2017-02-07T16:13:30Z
2017-02-07T16:13:30Z
2017-02-07T16:13:49Z
ENH: allow timestamp subtraction with different timezones (GH15249)
diff --git a/pandas/tslib.pyx b/pandas/tslib.pyx index 43f3c3add160a..7dd433a5ff571 100644 --- a/pandas/tslib.pyx +++ b/pandas/tslib.pyx @@ -2,7 +2,7 @@ cimport numpy as np from numpy cimport (int8_t, int32_t, int64_t, import_array, ndarray, - NPY_INT64, NPY_DATETIME, NPY_TIMEDELTA) + NPY_INT...
works on #15249 passes the relevant tests but fails on few. Those include numpy dependency libgfortran and some environment issues. The output works just fine. @jreback
https://api.github.com/repos/pandas-dev/pandas/pulls/15329
2017-02-07T11:01:51Z
2017-04-03T15:23:18Z
null
2023-05-11T01:15:04Z
ENH: enabled 'on' keyword for groupby(..).resample()
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 1a32498d53c23..1c00c18a24717 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -149,6 +149,7 @@ Other enhancements - ``Series/DataFrame.asfreq()`` have gained a ``fill_value`` parameter, to fill mis...
- [x] closes #15021 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15326
2017-02-07T02:54:02Z
2017-02-07T13:59:45Z
null
2017-02-24T01:36:37Z
TST: Timedelta tests reorg (gh14854)
diff --git a/pandas/tests/indexes/datetimes/test_date_range.py b/pandas/tests/indexes/datetimes/test_date_range.py index b2161aa5c75c6..46d3ce96196aa 100644 --- a/pandas/tests/indexes/datetimes/test_date_range.py +++ b/pandas/tests/indexes/datetimes/test_date_range.py @@ -1,12 +1,20 @@ +import numpy as np from datetim...
- [x] Partially completes #14854 - [x] Tests reorganized - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew: reorg of Timedelta tests
https://api.github.com/repos/pandas-dev/pandas/pulls/15324
2017-02-06T22:30:47Z
2017-02-08T00:42:34Z
null
2017-02-08T00:45:07Z
CLN: reorg pandas/io/json to sub-dirs
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 16caef57673f7..1a32498d53c23 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -96,6 +96,9 @@ support for bz2 compression in the python 2 c-engine improved (:issue:`14874`). .. _whatsnew_0200.enha...
xref #14904
https://api.github.com/repos/pandas-dev/pandas/pulls/15322
2017-02-06T21:59:36Z
2017-02-06T23:04:04Z
null
2017-02-07T02:09:47Z
BUG/API: .merge() and .join() on category dtype columns will now preserve category dtype
diff --git a/asv_bench/benchmarks/join_merge.py b/asv_bench/benchmarks/join_merge.py index d9c631fa92efd..776316343e009 100644 --- a/asv_bench/benchmarks/join_merge.py +++ b/asv_bench/benchmarks/join_merge.py @@ -6,7 +6,7 @@ from pandas import ordered_merge as merge_ordered -#----------------------------------...
closes #10409 ``` before after ratio [6d2293f7] [c352573f] - 410.11ms 260.46ms 0.64 join_merge.MergeCategoricals.time_merge_cat SOME BENCHMARKS HAVE CHANGED SIGNIFICANTLY. ```
https://api.github.com/repos/pandas-dev/pandas/pulls/15321
2017-02-06T21:40:18Z
2017-03-10T23:06:03Z
null
2017-03-11T16:22:47Z
DOC/CI: ensure correct pandas version (GH15311)
diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 4dc9a203f1978..5dc649a91c4f7 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -22,8 +22,8 @@ if [ x"$DOC_BUILD" != x"" ]; then echo "Will build docs" source activate pandas - conda install -n pandas -c r r rpy2 --yes + # install sudo deps...
closes #15311
https://api.github.com/repos/pandas-dev/pandas/pulls/15317
2017-02-06T14:14:33Z
2017-02-06T15:55:39Z
2017-02-06T15:55:39Z
2017-02-06T15:55:39Z
ENH: Intervalindex
diff --git a/asv_bench/benchmarks/indexing.py b/asv_bench/benchmarks/indexing.py index d938cc6a6dc4d..a32c9f25a0f09 100644 --- a/asv_bench/benchmarks/indexing.py +++ b/asv_bench/benchmarks/indexing.py @@ -226,6 +226,26 @@ def time_is_monotonic(self): self.miint.is_monotonic +class IntervalIndexing(object):...
closes #7640 closes #8625 reprise of #8707 - redid the construction impl a bit, now uses the proper Index calling conventions (as well as other sub-classing conventions). - more testing, including all generic index tests (but still prob need some more) - add ._mask to track internal nans (its lazily computed...
https://api.github.com/repos/pandas-dev/pandas/pulls/15309
2017-02-05T20:07:03Z
2017-04-14T13:32:37Z
null
2017-04-14T16:40:15Z
TST: Timestamp and Timeseries tests reorg (gh14854)
diff --git a/pandas/sparse/tests/test_series.py b/pandas/sparse/tests/test_series.py index 06d76bdd4dd3d..05190df87b86e 100644 --- a/pandas/sparse/tests/test_series.py +++ b/pandas/sparse/tests/test_series.py @@ -19,6 +19,9 @@ from pandas._sparse import BlockIndex, IntIndex from pandas.sparse.api import SparseSeries ...
- [x] Partially completes #14854 - [x] Tests reorganized (```test_timeseries.py``` + ```test_tslib.py``` -> ```test_timestamp.py```) - [x] Passes ``git diff upstream/master | flake8 --diff``
https://api.github.com/repos/pandas-dev/pandas/pulls/15301
2017-02-03T20:46:57Z
2017-02-04T18:27:59Z
null
2017-02-04T18:37:51Z
ENH: .isnull and .notnull have been added as methods to Index to make this more consistent with the Series API
diff --git a/doc/source/api.rst b/doc/source/api.rst index 92f290b5ee0a9..6c4a3cff5b4cf 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -1356,8 +1356,16 @@ Modifying and Computations Index.unique Index.nunique Index.value_counts + +Missing Values +~~~~~~~~~~~~~~ +.. autosummary:: + :toctree: g...
https://api.github.com/repos/pandas-dev/pandas/pulls/15300
2017-02-03T18:20:34Z
2017-02-04T18:29:13Z
null
2017-02-04T18:29:13Z
Fix nsmallest/nlargest With Identical Values
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index ad190671cbbdc..facedcd1b9144 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -1095,6 +1095,7 @@ Reshaping - Bug in ``pd.pivot_table()`` where no error was raised when values argument was not in th...
- [x] closes #15297 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15299
2017-02-03T16:38:25Z
2017-04-06T13:41:25Z
null
2017-04-06T13:44:30Z
Added a tutorial for pandas dataframes
diff --git a/doc/source/tutorials.rst b/doc/source/tutorials.rst index c25e734a046b2..401a6446673cf 100644 --- a/doc/source/tutorials.rst +++ b/doc/source/tutorials.rst @@ -150,3 +150,4 @@ Various Tutorials - `Intro to pandas data structures, by Greg Reda <http://www.gregreda.com/2013/10/26/intro-to-pandas-data-struct...
- [ ] closes #xxxx - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15295
2017-02-03T09:28:24Z
2017-02-03T13:50:26Z
2017-02-03T13:50:26Z
2017-02-03T13:50:29Z
BUG: Support empty dict-likes in replace()
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 34048b8cc372d..d76a78c68fb73 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -512,3 +512,4 @@ Bug Fixes - Bug in ``DataFrame.boxplot`` where ``fontsize`` was not applied to the tick labels on ...
- [x] closes #15289 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15294
2017-02-02T17:02:03Z
2017-02-02T20:26:55Z
null
2017-02-02T20:27:06Z
ENH: Added ability to freeze panes from DataFrame.to_excel() (#15160)
diff --git a/doc/source/io.rst b/doc/source/io.rst index 22eac33a715ba..2d6ddf98437e5 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -2777,6 +2777,7 @@ Added support for Openpyxl >= 2.2 ``'xlsxwriter'`` will produce an Excel 2007-format workbook (xlsx). If omitted, an Excel 2007-formatted workbook ...
- [X] closes #15160 - [x] tests passed- Existing tests passed. New test added and passed. - [X] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry- Added to 0.20. The ability to freeze panes has been added to the to_excel() method on data frames. The parameter is a tuple of 2 integers, r...
https://api.github.com/repos/pandas-dev/pandas/pulls/15291
2017-02-02T05:28:00Z
2017-02-16T17:47:46Z
null
2017-03-04T23:50:18Z
COMPAT: xarray 0.8.2 test compat w.r.t. CategoricalIndex idempotency
diff --git a/ci/install_travis.sh b/ci/install_travis.sh index ded428c677f17..52b52d787aade 100755 --- a/ci/install_travis.sh +++ b/ci/install_travis.sh @@ -143,7 +143,7 @@ else echo "[pip installs]" REQ="ci/requirements-${PYTHON_VERSION}${JOB_TAG}.pip" if [ -e ${REQ} ]; then - pip install --upgrad...
closes #15282
https://api.github.com/repos/pandas-dev/pandas/pulls/15285
2017-02-01T19:37:19Z
2017-02-01T22:55:41Z
2017-02-01T22:55:41Z
2017-02-01T22:55:41Z
BUG: Fix downcast argument for DataFrame.fillna()
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index d76a78c68fb73..99f1bb30a0f26 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -505,11 +505,7 @@ Bug Fixes - Bug in ``DataFrame.to_stata()`` and ``StataWriter`` which produces incorrectly formatted ...
- [X] closes #15277 - [X] tests added / passed - [x] passes git diff upstream/master | flake8 --diff - [X] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15278
2017-02-01T06:24:11Z
2017-02-06T15:26:42Z
null
2019-02-09T21:40:20Z
ENH: Set default dialect to None to enable SQL prefixes
diff --git a/pandas/io/gbq.py b/pandas/io/gbq.py index 966f53e9d75ef..09c0eeca57fef 100644 --- a/pandas/io/gbq.py +++ b/pandas/io/gbq.py @@ -145,7 +145,7 @@ class GbqConnector(object): scope = 'https://www.googleapis.com/auth/bigquery' def __init__(self, project_id, reauth=False, verbose=False, - ...
Alters the ```read_gbq``` function to leave ```dialect``` unset by default. This allows the user to specify the dialect using a [query prefix](https://cloud.google.com/bigquery/docs/reference/standard-sql/enabling-standard-sql#sql-prefix), while leaving the default behavior unchanged.
https://api.github.com/repos/pandas-dev/pandas/pulls/15271
2017-01-31T03:23:59Z
2017-04-03T15:18:44Z
null
2017-04-03T15:18:44Z
ENH: Add empty property to Index.
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 9e71b9a11c8eb..72511a38e991f 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -155,6 +155,7 @@ Other enhancements - ``Series/DataFrame.squeeze()`` have gained the ``axis`` parameter. (:issue:`15339...
Previously, attempting to evaluate an Index in a boolean context prints an error message listing various alternatives, one of which is `.empty`, which was not actually implemented on `Index`. - [x] closes #13207 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whats...
https://api.github.com/repos/pandas-dev/pandas/pulls/15270
2017-01-31T02:22:52Z
2017-03-28T19:10:59Z
null
2017-03-28T19:11:01Z
#14854: DatetimeIndex compiled together in test_datetime.py
diff --git a/pandas/tests/indexes/datetimes/__init__.py b/pandas/tests/indexes/datetimes/__init__.py new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/pandas/tests/indexes/datetimes/test_astype.py b/pandas/tests/indexes/datetimes/test_astype.py new file mode 100644 index 0000000000000..f64d18a69a093 ...
### Partially completes #14854 Grouped all the ```DatetimeIndex``` related tests under one file - ```pandas/tests/indexes/test_datetime.py```. ### Tests reorganized There were some tests in other classes which could be shifted to the as well. From **```pandas/pandas/tseries/tests/test_timeseries.py```** - ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15266
2017-01-30T19:08:37Z
2017-02-03T01:15:55Z
null
2017-02-08T19:43:55Z
Fix overflow error in cartesian_product
diff --git a/doc/source/whatsnew/v0.19.2.txt b/doc/source/whatsnew/v0.19.2.txt index 722e494c9e614..bf52d1a74e3ea 100644 --- a/doc/source/whatsnew/v0.19.2.txt +++ b/doc/source/whatsnew/v0.19.2.txt @@ -80,3 +80,4 @@ Bug Fixes - Explicit check in ``to_stata`` and ``StataWriter`` for out-of-range values when writing doub...
When the numbers in `X` are large it can cause an overflow error on windows machine where the native `int` is 32 bit. Switching to np.intp alleviates this problem. Other fixes would include switching to np.uint32 or np.uint64. #15234
https://api.github.com/repos/pandas-dev/pandas/pulls/15265
2017-01-30T18:32:15Z
2017-02-01T20:45:37Z
null
2017-02-01T20:46:03Z
CLN: remove build warnings from tslib.pyx, saslib.pyx, some from lib.pyx
diff --git a/pandas/io/sas/saslib.pyx b/pandas/io/sas/saslib.pyx index a66d62ea41581..4396180da44cb 100644 --- a/pandas/io/sas/saslib.pyx +++ b/pandas/io/sas/saslib.pyx @@ -311,7 +311,7 @@ cdef class Parser(object): self.current_page_subheaders_count =\ self.parser._current_page_subheaders_count ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15264
2017-01-30T16:11:53Z
2017-01-30T17:39:51Z
2017-01-30T17:39:51Z
2017-01-30T23:27:01Z
API: Reformat output of groupby.describe (#4792)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 9eae2b7a33923..2300382a09940 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -356,6 +356,59 @@ New Behavior: In [11]: index.memory_usage(deep=True) Out[11]: 260 +.. _whatsnew_0200.api_bre...
- [x] closes #4792 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` Doesn't look like this was address in a PR in 0.20, but the original issue works on master.
https://api.github.com/repos/pandas-dev/pandas/pulls/15260
2017-01-30T07:12:15Z
2017-02-10T00:19:24Z
null
2017-12-20T02:04:08Z
CLN: remove build some warnings
diff --git a/pandas/parser.pyx b/pandas/parser.pyx index b6e5ad0d73b7c..23aee860b3108 100644 --- a/pandas/parser.pyx +++ b/pandas/parser.pyx @@ -716,11 +716,10 @@ cdef class TextReader: # header is now a list of lists, so field_count should use header[0] cdef: - size_t i, start, data_line...
CLN: from algos_rank_helper.pxi.in CLN: and algos_groupby_helper.pxi.in CLN: hashtable warns CLN: parser warnings closes #15190
https://api.github.com/repos/pandas-dev/pandas/pulls/15259
2017-01-30T02:29:10Z
2017-01-30T14:15:10Z
null
2017-01-30T14:15:10Z
API: change default behaviour of str.match from deprecated extract to match (GH5224)
diff --git a/doc/source/text.rst b/doc/source/text.rst index 2b2520cb6100f..b110ef2167a03 100644 --- a/doc/source/text.rst +++ b/doc/source/text.rst @@ -385,18 +385,6 @@ or match a pattern: The distinction between ``match`` and ``contains`` is strictness: ``match`` relies on strict ``re.match``, while ``contains`` re...
I just stumbled on this, and seems we didn't have this in our deprecations to do list (https://github.com/pandas-dev/pandas/issues/6581). This PR changes the default behaviour of `str.match` from extracting groups to just a match (True/False). The previous default behaviour was deprecated since 0.13.0 (https://githu...
https://api.github.com/repos/pandas-dev/pandas/pulls/15257
2017-01-29T21:48:52Z
2017-03-22T18:51:11Z
null
2017-03-22T18:51:12Z
Do not cast .transform() output back to input dtype (closes #10972)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index afe2758db9ab1..fcca834f68ab4 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -502,7 +502,7 @@ Bug Fixes - Bug in ``DataFrame.to_stata()`` and ``StataWriter`` which produces incorrectly formatted...
- [x] closes #10972 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry Maybe need more tests, and check performance?
https://api.github.com/repos/pandas-dev/pandas/pulls/15256
2017-01-29T13:45:47Z
2017-03-02T23:19:30Z
null
2017-03-03T07:56:38Z
TST: MultiIndex Slicing maintains first level index (#12697)
diff --git a/pandas/tests/indexing/test_indexing.py b/pandas/tests/indexing/test_indexing.py index a6eb3c8a891e7..f7fa07916ca74 100644 --- a/pandas/tests/indexing/test_indexing.py +++ b/pandas/tests/indexing/test_indexing.py @@ -5392,6 +5392,23 @@ def test_maybe_numeric_slice(self): expected = [1] sel...
- [x] closes #12697 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` The original issue appears to work correctly on master and doesn't seem to have been fixed by a PR from 0.20.0
https://api.github.com/repos/pandas-dev/pandas/pulls/15255
2017-01-29T09:58:31Z
2017-01-29T21:52:56Z
2017-01-29T21:52:56Z
2017-12-20T02:04:06Z
BUG GH15240 Timestamp.replace raised ValueError instead of TypeError.
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index afe2758db9ab1..24c0dba3d3dc5 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -510,3 +510,5 @@ Bug Fixes - Bug in ``DataFrame.boxplot`` where ``fontsize`` was not applied to the tick labels on ...
- [ ] closes #15240 - [1] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry 514
https://api.github.com/repos/pandas-dev/pandas/pulls/15253
2017-01-28T03:24:25Z
2017-01-28T03:26:16Z
null
2017-01-28T03:29:09Z
Timestamp replace compatibility
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index afe2758db9ab1..f87fad051fad2 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -416,6 +416,7 @@ Performance Improvements Bug Fixes ~~~~~~~~~ +- Bug in ``Timestamp.replace`` now raises ``TypeError...
- [x ] closes #15240 - [] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15248
2017-01-27T21:17:36Z
2017-01-28T18:29:12Z
null
2017-01-28T18:57:14Z
PERF: high memory in MI
diff --git a/asv_bench/benchmarks/indexing.py b/asv_bench/benchmarks/indexing.py index 27cd320c661e0..d938cc6a6dc4d 100644 --- a/asv_bench/benchmarks/indexing.py +++ b/asv_bench/benchmarks/indexing.py @@ -88,7 +88,7 @@ def setup(self): def time_getitem_scalar(self): self.ts[self.dt] - + class Dat...
closes #13904 Creates an efficient MultiIndexHashTable in cython. This allows us to efficiently store a multi-index for fast indexing (``.get_loc()`` and ``.get_indexer()`), with the current tuple-based (and gil holding) use of the PyObject Hash Table. This uses the ``pandas.tools.hashing`` routines to hash each ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15245
2017-01-27T19:29:36Z
2017-02-15T15:25:57Z
null
2017-03-02T17:18:51Z
ENH:read_html() handles tables with multiple header rows #13434
diff --git a/doc/source/io.rst b/doc/source/io.rst index e72224c6fa1fe..53abc9edb2ebb 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -2232,9 +2232,10 @@ Read a URL and match a table that contains specific text match = 'Metcalf Bank' df_list = pd.read_html(url, match=match) -Specify a header row (by...
- [x] closes #13434 - [x] 2 tests added / passed - [x] Multiple tr rows within a thead are now parsed, creating a multiindex header.
https://api.github.com/repos/pandas-dev/pandas/pulls/15242
2017-01-27T18:08:49Z
2017-03-29T23:28:23Z
null
2017-03-29T23:35:08Z
PERF: correctly report memory used by Index's
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 2dc15f2fe0781..15a696987d628 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -314,6 +314,43 @@ New Behavior: In [5]: df['a']['2011-12-31 23:59:59'] Out[5]: 1 +.. _whatsnew_0200.api_breaking...
https://api.github.com/repos/pandas-dev/pandas/pulls/15237
2017-01-26T13:56:24Z
2017-01-27T14:43:11Z
null
2017-01-27T14:43:12Z
Make Series.map() documentation a bit more verbose
diff --git a/pandas/core/series.py b/pandas/core/series.py index 9845e1cd4ad47..45297bec5c3f9 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -2121,13 +2121,17 @@ def map(self, arg, na_action=None): Examples -------- - Map inputs to outputs + >>> import pandas as pd +...
https://api.github.com/repos/pandas-dev/pandas/pulls/15235
2017-01-26T08:23:51Z
2017-03-02T23:27:31Z
null
2017-03-02T23:27:32Z
TST: incorrect locale specification for datetime format
diff --git a/pandas/tseries/tests/test_timeseries.py b/pandas/tseries/tests/test_timeseries.py index 4d286fc62764c..b5daf1ac0ec68 100644 --- a/pandas/tseries/tests/test_timeseries.py +++ b/pandas/tseries/tests/test_timeseries.py @@ -1,4 +1,5 @@ # pylint: disable-msg=E1101,W0612 +import locale import calendar import ...
closes #15215
https://api.github.com/repos/pandas-dev/pandas/pulls/15233
2017-01-26T00:21:58Z
2017-01-26T02:31:04Z
2017-01-26T02:31:04Z
2017-01-26T02:31:04Z
BUG/API: Return a Series from DataFrame.asof with no match
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 86fa919fec304..07c90b1e64f29 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -327,7 +327,7 @@ Other API Changes - ``pd.read_csv()`` will now raise a ``ValueError`` for the C engine if the quote ch...
- [x] closes #15118 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry Technically this is an API change, but more of a bug so didn't think there was a need to warn / deprecate? Also there seems to be room to clean up the whole `asof` implementation, x...
https://api.github.com/repos/pandas-dev/pandas/pulls/15232
2017-01-26T00:12:31Z
2017-01-26T12:37:53Z
2017-01-26T12:37:53Z
2017-01-26T12:37:55Z
Steal the algorithm used to combine hashes from tupleobject.c
diff --git a/pandas/tools/hashing.py b/pandas/tools/hashing.py index 6d2186fdab34c..e58c952eeacbe 100644 --- a/pandas/tools/hashing.py +++ b/pandas/tools/hashing.py @@ -1,6 +1,7 @@ """ data hash pandas / numpy objects """ +import itertools import numpy as np from pandas import _hash, Series, factorize, Categoric...
closes #15224
https://api.github.com/repos/pandas-dev/pandas/pulls/15227
2017-01-25T17:39:24Z
2017-01-25T23:53:11Z
null
2017-01-25T23:53:11Z
ENH: support MultiIndex and tuple hashing
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 2dc15f2fe0781..626ed0b1bac61 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -145,6 +145,7 @@ Other enhancements - ``pd.merge_asof()`` gained the option ``direction='backward'|'forward'|'nearest'`...
on top of #15216 closes #15227
https://api.github.com/repos/pandas-dev/pandas/pulls/15224
2017-01-25T12:40:40Z
2017-01-27T14:20:49Z
null
2017-01-27T14:20:49Z
CLN: remove deprecated google-analytics module (GH11308)
diff --git a/doc/source/remote_data.rst b/doc/source/remote_data.rst index 019aa82fed1aa..7980133582125 100644 --- a/doc/source/remote_data.rst +++ b/doc/source/remote_data.rst @@ -29,63 +29,3 @@ modules to be independently updated to your pandas installation. The API for .. code-block:: python from pandas...
https://api.github.com/repos/pandas-dev/pandas/pulls/15223
2017-01-25T11:09:43Z
2017-01-25T15:43:14Z
2017-01-25T15:43:14Z
2017-01-25T15:43:14Z
DOC: Merge FAQ and gotcha (rebase of GH13768)
diff --git a/doc/source/advanced.rst b/doc/source/advanced.rst index 9247652388c5b..21ae9f1eb8409 100644 --- a/doc/source/advanced.rst +++ b/doc/source/advanced.rst @@ -844,3 +844,136 @@ Of course if you need integer based selection, then use ``iloc`` .. ipython:: python dfir.iloc[0:5] + +Miscellaneous indexing ...
Rebase and clean-up of https://github.com/pandas-dev/pandas/pull/13768 closes #9809
https://api.github.com/repos/pandas-dev/pandas/pulls/15222
2017-01-25T10:36:01Z
2017-01-25T23:48:06Z
null
2017-01-26T08:19:31Z
BUG: TimedeltaIndex raising ValueError when boolean indexing (#14946)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 86fa919fec304..a7d78dff44d71 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -380,6 +380,7 @@ Bug Fixes - Bug in ``Index`` power operations with reversed operands (:issue:`14973`) - Bug in ``Ti...
- [x] closes #14946 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry Implementing patch suggested by @jreback [here](https://github.com/pandas-dev/pandas/issues/14946#issuecomment-268666453) that prevents raising a `ValueError` when boolean indexing wit...
https://api.github.com/repos/pandas-dev/pandas/pulls/15221
2017-01-25T06:21:01Z
2017-01-26T15:01:14Z
null
2017-12-20T02:04:06Z
ENH union_categoricals supports ignore_order GH13410
diff --git a/doc/source/categorical.rst b/doc/source/categorical.rst index 18e429cfc92fa..db974922e1d76 100644 --- a/doc/source/categorical.rst +++ b/doc/source/categorical.rst @@ -693,6 +693,17 @@ The below raises ``TypeError`` because the categories are ordered and not identi Out[3]: TypeError: to union order...
xref #13410 (ignore_order portion)
https://api.github.com/repos/pandas-dev/pandas/pulls/15219
2017-01-25T04:15:02Z
2017-02-22T16:31:40Z
null
2017-02-22T16:32:47Z
BLD: hashtable.pxd is a pxd depends for _join, hashtable, and index
diff --git a/setup.py b/setup.py index 8cdd72b2f4682..1c9972defabbe 100755 --- a/setup.py +++ b/setup.py @@ -490,13 +490,13 @@ def pxd(name): index={'pyxfile': 'index', 'sources': ['pandas/src/datetime/np_datetime.c', 'pandas/src/datetime/np_datetime_strings.c'], - 'px...
https://api.github.com/repos/pandas-dev/pandas/pulls/15218
2017-01-25T01:51:36Z
2017-01-25T12:01:34Z
2017-01-25T12:01:34Z
2017-01-25T12:01:34Z
ENH: add MultiIndex.to_dataframe
diff --git a/doc/source/api.rst b/doc/source/api.rst index 04a85bf63a6f8..92f290b5ee0a9 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -1460,6 +1460,7 @@ MultiIndex Components MultiIndex.set_levels MultiIndex.set_labels MultiIndex.to_hierarchical + MultiIndex.to_frame MultiIndex.is_lexsor...
ENH: allow hashing of MultiIndex closes #12397
https://api.github.com/repos/pandas-dev/pandas/pulls/15216
2017-01-24T23:06:04Z
2017-01-25T21:20:37Z
null
2017-01-25T21:42:51Z
BLD: add locale to 34_nslow build
diff --git a/.travis.yml b/.travis.yml index b2a1a8a63cfe6..be2058950d8ec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -132,6 +132,7 @@ matrix: env: - PYTHON_VERSION=3.4 - JOB_NAME: "34_nslow" + - LOCALE_OVERRIDE="zh_CN.UTF-8" - NOSE_ARGS="not slow and not disabled" - ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15211
2017-01-24T16:11:29Z
2017-01-24T19:52:06Z
null
2017-01-24T19:52:06Z
DOC: clean-up docstring str.replace (GH15056)
diff --git a/pandas/core/strings.py b/pandas/core/strings.py index c48defe39a011..ac8d1db6a0bf3 100644 --- a/pandas/core/strings.py +++ b/pandas/core/strings.py @@ -318,7 +318,8 @@ def str_replace(arr, pat, repl, n=-1, case=True, flags=0): match object and must return a replacement string to be used. ...
I was too late to give feedback, so a few changes to the docstring additions of #15056
https://api.github.com/repos/pandas-dev/pandas/pulls/15210
2017-01-24T15:35:54Z
2017-01-24T18:49:00Z
null
2017-01-24T18:49:00Z
TST: fix excel tests when openpyxl is not installed
diff --git a/pandas/io/tests/test_excel.py b/pandas/io/tests/test_excel.py index a2162320d9d1b..12aecfd50c3a6 100644 --- a/pandas/io/tests/test_excel.py +++ b/pandas/io/tests/test_excel.py @@ -449,6 +449,8 @@ def test_read_excel_blank_with_header(self): # GH 12292 : error when read one empty column from excel file...
Some tests fail when you don't have openpyxl installed, so explicitly skipping those (they need it for certain exts because they write a frame in the test)
https://api.github.com/repos/pandas-dev/pandas/pulls/15209
2017-01-24T15:08:22Z
2017-01-24T21:24:04Z
null
2017-01-24T21:24:04Z
BUG: Remove locale conversion from Stata file date
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 6aaed803c5352..85da1579b33a2 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -458,6 +458,7 @@ Bug Fixes - Bug in ``pd.read_csv()`` with ``float_precision='round_trip'`` which caused a segfault w...
Prevent locale from affecting Stata file date creation, which must be en_US. xref #13856 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15208
2017-01-24T14:56:32Z
2017-01-25T12:01:11Z
null
2017-02-17T18:58:22Z
BUG: groupby.cummin/cummax nans inf values for int64
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 9895afdc4c7b5..9c4bb0980b569 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -365,7 +365,7 @@ Performance Improvements - Increased performance of ``pd.factorize()`` by releasing the GIL with ``obj...
- [x] closes #15109 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` I migrated the `accum` portions of the code into cython and attempted to implement your suggested method to fix this issue @jreback. Let me know if this is along the right track.
https://api.github.com/repos/pandas-dev/pandas/pulls/15205
2017-01-24T08:22:38Z
2017-01-25T19:05:23Z
null
2017-12-20T02:04:04Z
BUG: GH14233 resample().median() failed if duplicate column names wer…
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index cc3bf696ee4c7..be2be9484adc5 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -464,3 +464,6 @@ Bug Fixes - Bug in ``DataFrame.boxplot`` where ``fontsize`` was not applied to the tick labels on ...
Simple fix for median issue. Should use cython implementation. - [X] closes #14233 - [X] tests added / passed - [X] passes ``git diff upstream/master | flake8 --diff`` - [X] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15202
2017-01-23T22:48:25Z
2017-01-24T18:46:27Z
null
2017-02-28T15:43:52Z
PERF: DataFrame.groupby.nunique
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 7e4fa44ea8ded..c738d8d9c3499 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -121,7 +121,7 @@ Other enhancements - ``Series.sort_index`` accepts parameters ``kind`` and ``na_position`` (:issue:`13...
closes #15197 ``` In [2]: %timeit df.groupby(['key1', 'key2']).nunique() 100 loops, best of 3: 9.31 ms per loop ``` ``` before after ratio [be3f2aea] [6d026165] - 473.67μs 427.27μs 0.90 groupby.GroupBySuite.time_nunique('float', 100) - 4.41s 9.53ms 0.00 groupby.groupb...
https://api.github.com/repos/pandas-dev/pandas/pulls/15201
2017-01-23T22:15:25Z
2017-01-24T14:20:30Z
null
2017-01-24T14:20:30Z
COMPAT: don't rely on dtype being False after numpy >= 1.13
diff --git a/ci/install_travis.sh b/ci/install_travis.sh index 542d22d9fa871..ded428c677f17 100755 --- a/ci/install_travis.sh +++ b/ci/install_travis.sh @@ -16,28 +16,29 @@ function edit_init() { if [ -n "$LOCALE_OVERRIDE" ]; then - echo "Adding locale to the first line of pandas/__init__.py" + ech...
closes #15199
https://api.github.com/repos/pandas-dev/pandas/pulls/15200
2017-01-23T21:18:57Z
2017-01-24T18:52:39Z
null
2017-01-24T18:52:39Z
Fix bug in window function count should count anything non-null
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 7e4fa44ea8ded..3737914c8c595 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -447,7 +447,7 @@ Bug Fixes - Bug in ``Series`` constructor when both ``copy=True`` and ``dtype`` arguments are prov...
- [x] closes #12541 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15196
2017-01-23T13:39:54Z
2017-01-24T18:02:16Z
null
2017-01-24T18:02:30Z
BUG: Fixed incorrect stream size check (#14125)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 79ca5a5e13d02..da41aaa03bfd5 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -383,6 +383,7 @@ Bug Fixes - Bug in ``pd.read_csv()`` in which the ``dialect`` parameter was not being verified before ...
- [X] closes #14125 - [X] tests added / passed: test_large_difference_in_columns in c_parser_only.py, Other tests passed. - [X] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry: Added to 0.20 whatsnew Issue summary: Previously, self->stream_cap was copied into a local variable called...
https://api.github.com/repos/pandas-dev/pandas/pulls/15195
2017-01-23T06:38:42Z
2017-01-24T23:13:38Z
null
2017-01-26T01:19:45Z
BLD: remove more build warnings
diff --git a/pandas/src/numpy_helper.h b/pandas/src/numpy_helper.h index 17d5ec12f4f79..809edb2e99fa2 100644 --- a/pandas/src/numpy_helper.h +++ b/pandas/src/numpy_helper.h @@ -125,7 +125,7 @@ PyObject* sarr_from_data(PyArray_Descr* descr, int length, void* data) { void transfer_object_column(char* dst, char* src, s...
https://api.github.com/repos/pandas-dev/pandas/pulls/15191
2017-01-22T17:36:03Z
2017-01-22T21:42:57Z
2017-01-22T21:42:57Z
2017-01-22T21:42:57Z
CI: add matplotlib, xlwt to build for 3.6
diff --git a/ci/requirements-3.6.pip b/ci/requirements-3.6.pip index 688866a18542f..e69de29bb2d1d 100644 --- a/ci/requirements-3.6.pip +++ b/ci/requirements-3.6.pip @@ -1 +0,0 @@ -xlwt diff --git a/ci/requirements-3.6.run b/ci/requirements-3.6.run index daf07be2d1785..5d9cb05a7b402 100644 --- a/ci/requirements-3.6.run ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15189
2017-01-22T16:08:25Z
2017-01-22T16:20:58Z
2017-01-22T16:20:58Z
2017-01-23T20:01:16Z
CLN: remove build warnings in join_asof indexers
diff --git a/pandas/src/algos_common_helper.pxi.in b/pandas/src/algos_common_helper.pxi.in index a579a5020f6e7..5e87528943005 100644 --- a/pandas/src/algos_common_helper.pxi.in +++ b/pandas/src/algos_common_helper.pxi.in @@ -374,7 +374,7 @@ def is_monotonic_{{name}}(ndarray[{{c_type}}] arr, bint timelike): n = len...
https://api.github.com/repos/pandas-dev/pandas/pulls/15188
2017-01-22T16:08:02Z
2017-01-22T17:20:19Z
2017-01-22T17:20:19Z
2017-01-22T17:20:19Z
DEPR: remove openpyxl deprecation warnings
diff --git a/pandas/io/excel.py b/pandas/io/excel.py index 6b7c597ecfcdc..f34ba65cf7b51 100644 --- a/pandas/io/excel.py +++ b/pandas/io/excel.py @@ -788,9 +788,15 @@ def __init__(self, path, engine=None, **engine_kwargs): # Create workbook object with default optimized_write=True. self.book = Workbo...
closes #15090
https://api.github.com/repos/pandas-dev/pandas/pulls/15185
2017-01-21T16:31:05Z
2017-01-21T16:49:22Z
2017-01-21T16:49:22Z
2017-01-21T16:49:22Z
Relocate exceptions #14800
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 2a825edd0e98a..65b5952206e36 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -265,6 +265,23 @@ Deprecations - ``DataFrame.astype()`` has deprecated the ``raise_on_error`` parameter in favor of ``e...
- [x] closes #14800 - [x] tests added / passed - [x] passes ``git diff master | flake8 --diff`` - [x] whatsnew entry Deprecation warnings will only be issued when exceptions/warnings are raised. I did think of putting a deprecation warning in ``pandas.common.core`` indicating that these exceptions were de...
https://api.github.com/repos/pandas-dev/pandas/pulls/15181
2017-01-20T12:53:48Z
2017-03-20T00:13:01Z
null
2017-03-20T00:13:02Z
DOC: reorg dialect in io.rst
diff --git a/doc/source/io.rst b/doc/source/io.rst index c53083238e098..eed63bf4b8453 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -357,94 +357,6 @@ warn_bad_lines : boolean, default ``True`` If error_bad_lines is ``False``, and warn_bad_lines is ``True``, a warning for each "bad line" will be output...
seems we had a section after 'Error Handling' in Parsing Options which is really basic, but out of place. Also moved Dialect to a proper sub-section.
https://api.github.com/repos/pandas-dev/pandas/pulls/15179
2017-01-20T12:11:46Z
2017-01-20T20:59:38Z
null
2017-01-20T20:59:38Z
BLD: Remove csv dialect warning in io.rst
diff --git a/doc/source/io.rst b/doc/source/io.rst index c53083238e098..6152f83675867 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -419,6 +419,7 @@ finds the closing double quote. We can get around this using ``dialect`` .. ipython:: python + :okwarning: dia = csv.excel() dia.quoting = csv....
Title is self-explanatory. xref <a href="https://github.com/pandas-dev/pandas/pull/14911#issuecomment-273896473">#14911 (comment)</a>.
https://api.github.com/repos/pandas-dev/pandas/pulls/15177
2017-01-20T10:29:53Z
2017-01-20T20:53:11Z
2017-01-20T20:53:11Z
2017-01-21T08:40:15Z
BUG: no need to validate monotonicity when groupby-rolling
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index f2d64a059282f..f9380e3e87f1d 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -392,7 +392,7 @@ Bug Fixes - +- Bug in ``.groupby(...).rolling(...)`` when the ``on`` is specified and using a ``D...
closes #15130
https://api.github.com/repos/pandas-dev/pandas/pulls/15175
2017-01-20T01:04:55Z
2017-01-20T12:21:53Z
null
2017-01-20T12:21:53Z
DOC: add subsequent_indent to wrapped text
diff --git a/pandas/io/parsers.py b/pandas/io/parsers.py index fdf26fdef6b25..f8905dfa315c4 100755 --- a/pandas/io/parsers.py +++ b/pandas/io/parsers.py @@ -148,7 +148,8 @@ na_values : scalar, str, list-like, or dict, default None Additional strings to recognize as NA/NaN. If dict passed, specific per-column...
Hey guys, This should fix the parsing error in the [read_csv documentation](http://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_csv.html#pandas.read_csv) : ![image](https://cloud.githubusercontent.com/assets/5640848/22127326/c84fa65c-de9b-11e6-8702-5c01e8ce4d22.png) `fill` wraps the line to 70 ch...
https://api.github.com/repos/pandas-dev/pandas/pulls/15173
2017-01-19T22:09:04Z
2017-01-22T11:35:13Z
2017-01-22T11:35:13Z
2017-01-22T11:35:24Z
CI: have 34_SLOW build use matplotlib latest from conda-forge
diff --git a/ci/requirements-3.4_SLOW.build b/ci/requirements-3.4_SLOW.build index de36b1afb9fa4..c05a68a14b402 100644 --- a/ci/requirements-3.4_SLOW.build +++ b/ci/requirements-3.4_SLOW.build @@ -1,4 +1,4 @@ python-dateutil pytz -numpy=1.9.3 +numpy=1.10* cython diff --git a/ci/requirements-3.4_SLOW.run b/ci/require...
CI: change 34_SLOW to use numpy 1.10* as mpl 2.0 requires anyhow
https://api.github.com/repos/pandas-dev/pandas/pulls/15170
2017-01-19T20:28:37Z
2017-01-19T21:53:38Z
2017-01-19T21:53:38Z
2017-01-19T21:53:38Z
DOC: Clarified wording of coerce_float
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 504554d6410f9..ef8b7a0d16bdc 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -962,7 +962,7 @@ def from_records(cls, data, index=None, exclude=None, columns=None, in the result (any names not found in the data will become all-NA ...
I think this is the intended meaning (and it matches with use).
https://api.github.com/repos/pandas-dev/pandas/pulls/15164
2017-01-19T12:58:06Z
2017-01-19T13:57:19Z
2017-01-19T13:57:19Z
2017-01-19T13:57:21Z
Bug in groupby.get_group on categoricalindex
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index e67d617fcc099..9e4bc8b797f37 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -389,6 +389,7 @@ Bug Fixes - Bug in compat for passing long integers to ``Timestamp.replace`` (:issue:`15030`) - Bug...
- [x] closes #15155 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15163
2017-01-19T11:41:28Z
2017-01-19T20:21:53Z
null
2017-11-10T11:11:23Z
BUG, TST: Patch handling of uint64 in algorithms
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 798151971363e..0a6f37fef209b 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -110,6 +110,7 @@ Notably, a new numerical index, ``UInt64Index``, has been created (:issue:`14937 - Bug in ``DataFrame`...
1) Patches handling of `uint64` in `value_counts` 2) Adds tests for handling of `uint64` in `factorize` xref #14934
https://api.github.com/repos/pandas-dev/pandas/pulls/15162
2017-01-19T10:45:04Z
2017-01-22T15:49:36Z
null
2017-01-22T19:42:57Z
Apply fontsize to both x- and y-axis tick labels
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index f3d60fa8cc05f..798151971363e 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -439,6 +439,9 @@ Bug Fixes - Bug in ``pd.read_csv()`` for the C engine where ``usecols`` were being indexed incorrectly...
- [x] closes #15108 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15161
2017-01-19T08:16:39Z
2017-01-20T17:12:58Z
2017-01-20T17:12:58Z
2017-01-20T17:13:03Z
CI: add .pxi.in to build caching
diff --git a/ci/prep_cython_cache.sh b/ci/prep_cython_cache.sh index cadc356b641f9..e091bb00ccedc 100755 --- a/ci/prep_cython_cache.sh +++ b/ci/prep_cython_cache.sh @@ -3,8 +3,8 @@ ls "$HOME/.cache/" PYX_CACHE_DIR="$HOME/.cache/pyxfiles" -pyx_file_list=`find ${TRAVIS_BUILD_DIR} -name "*.pyx" -o -name "*.pxd"` -pyx_...
closes #15154
https://api.github.com/repos/pandas-dev/pandas/pulls/15159
2017-01-19T02:20:20Z
2017-01-19T02:22:15Z
2017-01-19T02:22:14Z
2017-01-19T02:22:15Z
DOC: fix doc-build for .ix deprecations in whatsnew
diff --git a/doc/source/indexing.rst b/doc/source/indexing.rst index 9c653f6d9eeff..e2916c2d969d6 100644 --- a/doc/source/indexing.rst +++ b/doc/source/indexing.rst @@ -586,7 +586,7 @@ Using ``.loc``. Here we will select the appropriate indexes from the index, then .. ipython:: python - dfd.loc[df.index[[0, 2]], ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15158
2017-01-19T01:59:44Z
2017-01-19T02:01:45Z
2017-01-19T02:01:45Z
2017-01-19T02:01:46Z
BUG: unicode characters when reading JSON lines
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index e67d617fcc099..e4dacfaf40417 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -436,3 +436,4 @@ Bug Fixes - Bug in ``pd.read_csv()`` for the C engine where ``usecols`` were being indexed incorrectly...
Fixes UnicodeDecodeError bug when reading JSON lines input with Ascii decoder, which is often the default setting in Python 2.7. Avoids issues with mixing unicode and ascii strings. xref #15132 - [x] closes #15132 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] wh...
https://api.github.com/repos/pandas-dev/pandas/pulls/15149
2017-01-18T05:56:12Z
2017-01-19T13:54:35Z
null
2017-01-19T13:54:35Z
BUG: Segfault due to float_precision='round_trip'
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index f2d64a059282f..1c260d5fa996f 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -437,3 +437,5 @@ Bug Fixes - Bug in ``Series.dt.round`` inconsistent behaviour on NAT's with different arguments (:is...
`round_trip` calls back into Python, so the GIL must be held. It also fails to silence the Python exception, leading to spurious errors. Closes #15140. - [x] closes #xxxx - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` (*Most of them are false positives because flake8 do...
https://api.github.com/repos/pandas-dev/pandas/pulls/15148
2017-01-17T20:54:01Z
2017-01-20T12:31:32Z
null
2017-01-20T12:31:43Z
Categoricals hash consistently
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 2a825edd0e98a..8a137d1c90a8f 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -309,6 +309,7 @@ Bug Fixes - Bug in ``pd.read_csv()`` in which the ``dialect`` parameter was not being verified before ...
Previously categorical values were hashed using just their codes. This meant that the hash value depended on the ordering of the categories, rather than on the values the series represented. This caused problems in dask, where different partitions might have different categorical mappings. This PR makes the hash...
https://api.github.com/repos/pandas-dev/pandas/pulls/15143
2017-01-16T22:48:30Z
2017-01-18T14:35:44Z
null
2017-01-18T16:55:46Z
CLN/DEPR: remove deprecated pandas.rpy module (GH9602)
diff --git a/ci/lint.sh b/ci/lint.sh index 5c4613f88649e..2cbfdadf486b8 100755 --- a/ci/lint.sh +++ b/ci/lint.sh @@ -8,10 +8,9 @@ RET=0 if [ "$LINT" ]; then - # pandas/rpy is deprecated and will be removed. # pandas/src is C code, so no need to search there. echo "Linting *.py" - flake8 pandas --f...
Closes #9602
https://api.github.com/repos/pandas-dev/pandas/pulls/15142
2017-01-16T15:47:42Z
2017-01-22T12:15:10Z
2017-01-22T12:15:10Z
2018-04-10T11:35:47Z
BUG: Allow tolerance when left_index/right_index enabled for merge_asof() (#15135)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 9ea7b740bae8f..1f1b5ea1e38ee 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -358,7 +358,7 @@ Bug Fixes - +- Bug in ``pd.merge_asof()`` where ``left_index``/``right_index`` together caused a ...
- [x] closes #15135 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15139
2017-01-16T01:50:42Z
2017-01-17T13:43:35Z
null
2017-01-17T14:28:57Z
ENH: Timedelta isoformat
diff --git a/doc/source/timedeltas.rst b/doc/source/timedeltas.rst index f7aa879fa7216..b65a24a29bb16 100644 --- a/doc/source/timedeltas.rst +++ b/doc/source/timedeltas.rst @@ -310,6 +310,18 @@ similarly to the ``Series``. These are the *displayed* values of the ``Timedelta td.dt.components td.dt.components.sec...
Split from https://github.com/pandas-dev/pandas/pull/14904 A few questions before I finish all the docs / tests: The [spec](https://en.wikipedia.org/wiki/ISO_8601#Durations) seems very permissive about what's allowed, so we need to choose - Do we include components pandas can't represent like Years and Months ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15136
2017-01-15T13:08:17Z
2017-01-20T12:25:37Z
null
2017-04-05T02:07:21Z
MAINT: remove shebang from test modules
diff --git a/pandas/computation/tests/test_compat.py b/pandas/computation/tests/test_compat.py index 80b415739c647..8e8924379f153 100644 --- a/pandas/computation/tests/test_compat.py +++ b/pandas/computation/tests/test_compat.py @@ -1,4 +1,3 @@ -#!/usr/bin/env python # flake8: noqa diff --git a/pandas/computation/...
- [x] closes #15131
https://api.github.com/repos/pandas-dev/pandas/pulls/15134
2017-01-15T12:51:43Z
2017-01-15T16:09:03Z
2017-01-15T16:09:02Z
2017-07-11T10:06:15Z
ENH: Added 'direction' parameter to merge_asof() (#14887)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 9ea7b740bae8f..a6bafc811d321 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -115,6 +115,7 @@ Other enhancements - ``pandas.io.json.json_normalize()`` gained the option ``errors='ignore'|'raise'``...
- [x] closes #14887 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15129
2017-01-13T20:57:14Z
2017-01-18T16:08:10Z
null
2017-01-18T17:01:30Z
BUG: Fix Series constructor when copy=True
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 5c26bb2985e75..2a825edd0e98a 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -366,7 +366,7 @@ Bug Fixes - +- Bug in ``Series`` constructor when both ``copy=True`` and ``dtype`` arguments are ...
Updates Series constructor to include copy argument when dtype argument is also provided. Adds tests for copy parameter. xref #15125 - [x] closes #15125 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15128
2017-01-13T19:52:18Z
2017-01-15T16:11:15Z
null
2017-01-15T16:11:16Z
TST: tests.groupby needs to be a package to run tests
diff --git a/pandas/tests/groupby/__init__.py b/pandas/tests/groupby/__init__.py new file mode 100644 index 0000000000000..e69de29bb2d1d diff --git a/pandas/tests/groupby/test_groupby.py b/pandas/tests/groupby/test_groupby.py index 8e61fa3a5fb66..873c63ca257c4 100644 --- a/pandas/tests/groupby/test_groupby.py +++ b/pan...
skip parts of cummin test, xref #15109
https://api.github.com/repos/pandas-dev/pandas/pulls/15127
2017-01-13T19:34:21Z
2017-01-13T20:21:22Z
2017-01-13T20:21:22Z
2017-01-13T20:21:22Z
BUG: catch overflow in timestamp + offset operations
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 9ea7b740bae8f..dee74241a7a28 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -356,6 +356,7 @@ Bug Fixes - Bug in ``DataFrame.groupby().describe()`` when grouping on ``Index`` containing tuples (:i...
xref https://github.com/statsmodels/statsmodels/issues/3374
https://api.github.com/repos/pandas-dev/pandas/pulls/15126
2017-01-13T19:08:46Z
2017-01-14T17:02:20Z
null
2017-01-14T17:02:20Z
BUG: pandas.Series.dt.round inconsistent behaviour on NAT's with different arguments
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 9ea7b740bae8f..3463351d8e349 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -366,3 +366,5 @@ Bug Fixes - Bug in ``pd.read_csv()`` for the C engine where ``usecols`` were being indexed incorre...
- [ ] closes #14940 - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15124
2017-01-13T15:09:45Z
2017-01-14T18:24:27Z
null
2017-01-14T18:24:39Z
Fix typo in docstring
diff --git a/pandas/util/testing.py b/pandas/util/testing.py index 05517bf6cf53a..d96f57f2810e3 100644 --- a/pandas/util/testing.py +++ b/pandas/util/testing.py @@ -1220,7 +1220,7 @@ def assert_frame_equal(left, right, check_dtype=True, are identical. check_frame_type : bool, default False Whethe...
it -> int
https://api.github.com/repos/pandas-dev/pandas/pulls/15121
2017-01-12T21:53:39Z
2017-01-12T22:10:59Z
2017-01-12T22:10:59Z
2017-01-12T22:11:11Z
BUG: indexing changes to .loc for compat to .ix for several situations
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index c82dc370e3e71..b1f85c68153cf 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -244,7 +244,7 @@ Other API Changes - ``CParserError`` has been renamed to ``ParserError`` in ``pd.read_csv`` and will b...
handle iterator handle NamedTuple .loc retuns scalar selection dtypes correctly, closes #11617 xref #15113
https://api.github.com/repos/pandas-dev/pandas/pulls/15120
2017-01-12T20:31:40Z
2017-01-12T22:43:12Z
null
2017-01-12T22:43:12Z
BUG: Fix to_json lines with escaped characters
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index b157112b6ff37..9ea7b740bae8f 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -351,6 +351,7 @@ Bug Fixes - Require at least 0.23 version of cython to avoid problems with character encodings (:issue...
Updates existing to_json methodology by adding is_escaping variable, which ensures escaped chars are handled correctly. Bug description: A simple check of whether the prior char is a backslash is insufficient because the backslash may itself be escaped. A test is also included (previously included in #14693). ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15117
2017-01-12T14:56:47Z
2017-01-13T20:10:08Z
null
2017-01-13T20:25:17Z
BUG: Comparisons result in different dtypes for empty DataFrames #15077
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 798151971363e..8c7e3acc97305 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -437,9 +437,10 @@ Bug Fixes - Bug in ``Series`` constructor when both ``copy=True`` and ``dtype`` arguments are provi...
- [x] closes #15077 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff``
https://api.github.com/repos/pandas-dev/pandas/pulls/15115
2017-01-12T09:50:47Z
2017-01-21T15:32:28Z
null
2017-01-21T15:32:29Z
TST: Add another test for uneven CSV rows
diff --git a/pandas/io/tests/parser/usecols.py b/pandas/io/tests/parser/usecols.py index 96790e872abc3..4875282067fb3 100644 --- a/pandas/io/tests/parser/usecols.py +++ b/pandas/io/tests/parser/usecols.py @@ -465,3 +465,13 @@ def test_uneven_length_cols(self): [10, 20, 30]]) df =...
Title is self-explanatory. xref #15066. Closes #9549.
https://api.github.com/repos/pandas-dev/pandas/pulls/15114
2017-01-12T05:30:30Z
2017-01-12T22:33:49Z
2017-01-12T22:33:49Z
2017-01-12T22:38:24Z
DEPR: deprecate .ix in favor of .loc/.iloc
diff --git a/doc/source/advanced.rst b/doc/source/advanced.rst index 7b6b2a09f6037..9247652388c5b 100644 --- a/doc/source/advanced.rst +++ b/doc/source/advanced.rst @@ -230,7 +230,7 @@ of tuples: Advanced indexing with hierarchical index ----------------------------------------- -Syntactically integrating ``MultiIn...
closes #14218 closes #15116 This shows a pretty big deprecation message, though its instructive. ``` In [1]: df = pd.DataFrame({'A': [1, 2, 3], ...: 'B': [4, 5, 6]}, ...: index=list('abc')) ...: df ...: Out[1]: A B a 1 4 b 2 5 c 3 6 ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15113
2017-01-12T01:02:27Z
2017-01-18T16:12:01Z
null
2017-01-18T16:12:01Z
BUG: Fix for GH #14848 for groupby().describe() with tuples as the Index
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index c82dc370e3e71..3f72259c0838c 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -351,6 +351,8 @@ Bug Fixes - Bug in converting object elements of array-like objects to unsigned 64-bit integers (:issu...
- [x] closes #14848 - [x ] tests added / passed - [x ] passes ``git diff upstream/master | flake8 --diff`` - [x ] whatsnew entry This isn't the most elegant fix for the bug, but all the tests pass. There is probably a bigger issue to deal with here, which is to support tuples as an `Index` (as opposed to a ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15110
2017-01-11T15:17:59Z
2017-01-13T17:38:20Z
null
2017-01-23T15:59:22Z
API/ENH: relabel method
diff --git a/doc/source/api.rst b/doc/source/api.rst index 272dfe72eafe7..2acc23f588885 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -390,6 +390,7 @@ Reindexing / Selection / Label manipulation Series.reindex Series.reindex_like Series.rename + Series.relabel Series.rename_axis Seri...
Alt to #15029 - [x] closes #14829 - [ ] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry small example ```python In [7]: df = pd.DataFrame({'a': [1,2], 'b': [3, 4]}) In [8]: df.relabel(columns=['J', 'K']) Out[8]: J K 0 1 3 1 2 4 ```
https://api.github.com/repos/pandas-dev/pandas/pulls/15104
2017-01-11T01:22:19Z
2017-03-20T15:02:34Z
null
2023-05-11T01:14:54Z
TST: add network decorator on parser network tests for compressed url in parser
diff --git a/pandas/io/tests/parser/test_network.py b/pandas/io/tests/parser/test_network.py index 8e71cf1cc7e4c..d84c2ae3beb0c 100644 --- a/pandas/io/tests/parser/test_network.py +++ b/pandas/io/tests/parser/test_network.py @@ -30,8 +30,9 @@ def __init__(self): self.base_url = ('https://github.com/pandas-dev/...
https://api.github.com/repos/pandas-dev/pandas/pulls/15102
2017-01-10T21:09:15Z
2017-01-10T21:46:55Z
2017-01-10T21:46:55Z
2017-01-10T21:46:55Z
CLN: check NULL and have similar __dealloc__ code for all hashtables
diff --git a/pandas/src/hashtable_class_helper.pxi.in b/pandas/src/hashtable_class_helper.pxi.in index b26839599ef38..1d3c4b2cb5889 100644 --- a/pandas/src/hashtable_class_helper.pxi.in +++ b/pandas/src/hashtable_class_helper.pxi.in @@ -85,7 +85,9 @@ cdef class {{name}}Vector: self.data.data = <{{arg}}*> self....
https://api.github.com/repos/pandas-dev/pandas/pulls/15101
2017-01-10T18:16:48Z
2017-01-10T21:11:27Z
2017-01-10T21:11:27Z
2017-01-10T21:11:27Z
TST: close sas read handles properly in tests
diff --git a/pandas/io/tests/sas/test_sas7bdat.py b/pandas/io/tests/sas/test_sas7bdat.py index e20ea48247119..69073a90e9669 100644 --- a/pandas/io/tests/sas/test_sas7bdat.py +++ b/pandas/io/tests/sas/test_sas7bdat.py @@ -51,6 +51,7 @@ def test_from_buffer(self): iterator=True, encodin...
https://api.github.com/repos/pandas-dev/pandas/pulls/15100
2017-01-10T18:15:51Z
2017-01-10T21:10:05Z
2017-01-10T21:10:05Z
2017-01-10T21:10:05Z
DEPR: deprecate sortlevel in favor of sort_index
diff --git a/doc/source/api.rst b/doc/source/api.rst index 272dfe72eafe7..b7a1b8a005d89 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -418,7 +418,6 @@ Reshaping, sorting Series.reorder_levels Series.sort_values Series.sort_index - Series.sortlevel Series.swaplevel Series.unstack ...
closes #14279
https://api.github.com/repos/pandas-dev/pandas/pulls/15099
2017-01-10T15:38:41Z
2017-01-11T08:02:34Z
2017-01-11T08:02:34Z
2017-01-11T08:02:34Z
DEPR: remove pd.TimeSeries & Series.is_time_series
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index f0e4176472861..c6e5c56f1f58d 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -246,6 +246,46 @@ Using ``.iloc``. Here we will get the location of the 'A' column, then use *posi df.iloc[[0, 2], df...
xref #10890
https://api.github.com/repos/pandas-dev/pandas/pulls/15098
2017-01-10T15:33:20Z
2017-02-28T14:17:54Z
null
2017-02-28T14:17:54Z
fix misspelled word
diff --git a/pandas/formats/style.py b/pandas/formats/style.py index 4d5e72a38bb98..b3e0f0f6c7462 100644 --- a/pandas/formats/style.py +++ b/pandas/formats/style.py @@ -781,7 +781,7 @@ def background_gradient(self, cmap='PuBu', low=0, high=0, axis=0, low, high: float compress the range by these va...
`colunwise` should be `columnwise`
https://api.github.com/repos/pandas-dev/pandas/pulls/15097
2017-01-10T15:28:36Z
2017-01-10T15:37:15Z
2017-01-10T15:37:15Z
2017-01-10T15:37:18Z
BUG: use more generic type inference for fast plotting
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index c82dc370e3e71..a13b97266811a 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -248,6 +248,7 @@ Other API Changes - ``pd.read_csv()`` will now issue a ``ParserWarning`` whenever there are conflictin...
xref #15073 https://travis-ci.org/pandas-dev/pandas/jobs/190356982 was failing on tz-aware dtypes. these routines are the same in that they require datetime64ns (but any *also* accepts tz-aware).
https://api.github.com/repos/pandas-dev/pandas/pulls/15094
2017-01-10T00:42:26Z
2017-01-12T23:33:39Z
2017-01-12T23:33:39Z
2017-01-12T23:33:39Z
BUG: Inconsistent return type for downsampling on resample of empty DataFrame
diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt index 36ca79e8b8714..56275cda80e57 100644 --- a/doc/source/whatsnew/v0.21.0.txt +++ b/doc/source/whatsnew/v0.21.0.txt @@ -112,6 +112,7 @@ Plotting Groupby/Resample/Rolling ^^^^^^^^^^^^^^^^^^^^^^^^ +- Bug in ``DataFrame.resample().size()`...
- [x] closes #14962 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15093
2017-01-09T21:58:41Z
2017-06-13T23:16:03Z
2017-06-13T23:16:03Z
2017-06-13T23:16:07Z
BUG: encode filepaths on windows in 3.6
Not for Merge, just a small test for #15086 with AppVeyor.
https://api.github.com/repos/pandas-dev/pandas/pulls/15092
2017-01-09T20:07:07Z
2017-01-31T18:23:21Z
null
2017-02-07T17:16:08Z
BLD: add deps for 3.6 build
diff --git a/ci/requirements-3.6.pip b/ci/requirements-3.6.pip new file mode 100644 index 0000000000000..688866a18542f --- /dev/null +++ b/ci/requirements-3.6.pip @@ -0,0 +1 @@ +xlwt diff --git a/ci/requirements-3.6.run b/ci/requirements-3.6.run index 684dab333648a..daf07be2d1785 100644 --- a/ci/requirements-3.6.run ++...
https://api.github.com/repos/pandas-dev/pandas/pulls/15089
2017-01-09T18:48:48Z
2017-01-09T18:48:53Z
2017-01-09T18:48:53Z
2017-01-09T18:48:54Z