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
make nanops work when ndim==1 and axis==0 ( issue #7354 )
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index c764d92376c33..a93ccc1b9111e 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -215,6 +215,8 @@ Bug Fixes - Bug in ``quantile`` ignoring the axis keyword argument (:issue`7306`) - Bug where ``nanops._maybe_null_out`` doesn't work wit...
This fixes issue #7354, where some `nanops` functions fail for 1-dimensional arrays for the argument `axis=0`.
https://api.github.com/repos/pandas-dev/pandas/pulls/7437
2014-06-12T11:09:11Z
2014-06-12T12:59:15Z
null
2014-06-12T13:12:55Z
API: Improved inference of datetime/timedelta with mixed null objects. (GH7431)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 92e19ba43ccb7..04d859f9636dc 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -46,10 +46,8 @@ API changes day = offsets.Day(normalize=True) day.apply(Timestamp('2014-01-01 09:00')) - - - - +- Improved inference of datetime/t...
- regression from 0.13.1 in interpretation of an object Index - additional tests to validate datetimelike inferences closes #7431
https://api.github.com/repos/pandas-dev/pandas/pulls/7435
2014-06-11T18:51:00Z
2014-06-13T15:22:05Z
2014-06-13T15:22:05Z
2014-06-13T15:26:37Z
ENH: select_dypes impl
diff --git a/doc/source/api.rst b/doc/source/api.rst index bc257ffa0ad6c..c3cccca3251e4 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -524,6 +524,7 @@ Attributes and underlying data DataFrame.ftypes DataFrame.get_dtype_counts DataFrame.get_ftype_counts + DataFrame.select_dtypes DataFrame...
closes #7316 examples: ``` In [8]: paste df = DataFrame({'a': list('abc'), 'b': list(range(1, 4)), 'c': np.arange(3, 6).astype('u1'), 'd': np.arange(4.0, 7.0), 'e': [True, False, True], 'f': [False, True, False], ...
https://api.github.com/repos/pandas-dev/pandas/pulls/7434
2014-06-11T18:22:54Z
2014-07-07T16:22:20Z
2014-07-07T16:22:20Z
2014-07-09T20:53:14Z
BUG: Bug in multi-index slicing with datetimelike ranges (strings and Timestamps) (GH7429)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 6e3b23898d08f..266180f1867d1 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -127,15 +127,6 @@ Enhancements Performance ~~~~~~~~~~~ - - - - - - - - - - Improvements in dtype inference for numeric operations involving yielding pe...
closes #7429
https://api.github.com/repos/pandas-dev/pandas/pulls/7430
2014-06-11T14:02:04Z
2014-06-11T14:43:24Z
2014-06-11T14:43:24Z
2014-06-12T07:02:34Z
make nanops._maybe_null_out work with complex numbers ( issue #7353 )
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 86e73ccbde01c..c764d92376c33 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -213,7 +213,8 @@ Bug Fixes - Bug where bool objects were converted to ``nan`` in ``convert_objects`` (:issue:`7416`). - Bug in ``quantile`` ignoring th...
This fixes #7353 where `nanops._maybe_null_out`, and thus other functions that call on it, don't work with complex numbers.
https://api.github.com/repos/pandas-dev/pandas/pulls/7428
2014-06-11T13:17:42Z
2014-06-12T10:46:48Z
2014-06-12T10:46:48Z
2014-06-12T11:03:13Z
add unit tests for nanops
diff --git a/pandas/tests/test_common.py b/pandas/tests/test_common.py index 3055017a3148d..58338a47d9465 100644 --- a/pandas/tests/test_common.py +++ b/pandas/tests/test_common.py @@ -12,7 +12,6 @@ import pandas.core.common as com import pandas.util.testing as tm import pandas.core.config as cf -from pandas.core im...
This adds unit tests for `pandas.core.nanops`. It also moves existing nanops tests from `test_common` to `test_nanops`.
https://api.github.com/repos/pandas-dev/pandas/pulls/7427
2014-06-11T10:55:32Z
2014-06-11T12:30:46Z
2014-06-11T12:30:46Z
2014-06-20T14:42:51Z
FIX value_counts should skip NaT
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 2b76da1434ba3..e5222f9e33c1c 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -75,7 +75,7 @@ Enhancements - +- Add ``dropna`` argument to ``value_counts`` and ``nunique`` (:issue:`5569`). @@ -159,7 +159,7 @@ Bug Fixes ...
fixes #7423 fixes #5569.
https://api.github.com/repos/pandas-dev/pandas/pulls/7424
2014-06-11T00:00:33Z
2014-06-17T12:01:37Z
2014-06-17T12:01:37Z
2014-06-17T15:21:34Z
PERF: Series.transform speedups (GH6496)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 2b76da1434ba3..04231f08787f4 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -137,7 +137,7 @@ Performance - Improvements in dtype inference for numeric operations involving yielding performance gains for dtypes: ``int64``, ``tim...
closes #6496 turns out indexing into an array rather than building it up as a list using `concat` is faster (but have to be careful of type changes). ``` # this PR In [11]: %timeit df['signal'].groupby(g).transform(np.mean) 10 loops, best of 3: 158 ms per loop # master In [11]: %timeit df['signal'].groupby(g).transf...
https://api.github.com/repos/pandas-dev/pandas/pulls/7421
2014-06-10T20:44:05Z
2014-06-11T14:06:07Z
2014-06-11T14:06:07Z
2014-06-12T17:45:45Z
DOC: update df.as_matrix and df.values. Closes gh7413
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 4500a9181f5d9..f486d48b58651 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -1929,25 +1929,39 @@ def _get_bool_data(self): def as_matrix(self, columns=None): """ - Convert the frame to its Numpy-array matrix r...
https://api.github.com/repos/pandas-dev/pandas/pulls/7417
2014-06-10T15:41:11Z
2014-06-14T08:36:00Z
2014-06-14T08:36:00Z
2015-01-17T05:25:19Z
BUG/DTYPES: preserve bools in convert_objects
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 2b797dc295354..2b76da1434ba3 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -216,3 +216,5 @@ Bug Fixes (:issue:`7408`) - Bug where ``NaT`` wasn't repr'd correctly in a ``MultiIndex`` (:issue:`7406`, :issue:`7409`). +- Bug whe...
closes #7126
https://api.github.com/repos/pandas-dev/pandas/pulls/7416
2014-06-10T14:54:38Z
2014-06-10T21:52:01Z
2014-06-10T21:52:01Z
2014-06-13T05:13:26Z
TST7337: Fix more tests in windows
diff --git a/pandas/io/tests/test_pytables.py b/pandas/io/tests/test_pytables.py index edaae26acb29e..dd30527b1f82d 100644 --- a/pandas/io/tests/test_pytables.py +++ b/pandas/io/tests/test_pytables.py @@ -2067,6 +2067,10 @@ def test_append_with_timezones_dateutil(self): except ImportError: raise n...
Hopefully final attempt at fixing the windows test issues from dateutil timezone work. Related discussion on previous pull request [here](https://github.com/pydata/pandas/pull/7362).
https://api.github.com/repos/pandas-dev/pandas/pulls/7414
2014-06-10T10:58:11Z
2014-06-10T12:45:03Z
2014-06-10T12:45:03Z
2014-06-12T20:12:48Z
BUG: fix repring of nat multiindex and fix neg indexing in datetimeindex
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 1c564fbf76f59..ca7d6a11d38f1 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -214,3 +214,7 @@ Bug Fixes - Bug in ``.ix`` getitem should always return a Series (:issue:`7150`) - Bug in multi-index slicing with incomplete indexers (:...
closes #7406, #7408, #7409
https://api.github.com/repos/pandas-dev/pandas/pulls/7410
2014-06-09T15:11:54Z
2014-06-09T22:34:38Z
2014-06-09T22:34:38Z
2014-06-13T05:13:24Z
BUG: mi indexing bugs (GH7399,GH7400)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 586e47ff4f303..1c564fbf76f59 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -164,11 +164,6 @@ Bug Fixes -- Bug in ``.ix`` getitem should always return a Series (:issue:`7150`) - - - - @@ -216,3 +211,6 @@ Bug Fixes (:i...
closes #7399 closes #7400
https://api.github.com/repos/pandas-dev/pandas/pulls/7404
2014-06-09T13:20:02Z
2014-06-09T15:47:18Z
2014-06-09T15:47:17Z
2014-06-15T23:53:41Z
BUG: ix should return a Series for duplicate indices (GH7150)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 1cb6aadf3f40f..586e47ff4f303 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -164,7 +164,7 @@ Bug Fixes - +- Bug in ``.ix`` getitem should always return a Series (:issue:`7150`) diff --git a/pandas/core/indexing.py b/pand...
closes #7150
https://api.github.com/repos/pandas-dev/pandas/pulls/7402
2014-06-09T12:54:30Z
2014-06-09T13:16:42Z
2014-06-09T13:16:42Z
2014-06-15T23:54:11Z
DOC: existence docs and benchmarks.
diff --git a/bench/bench_existence.py b/bench/bench_existence.py new file mode 100644 index 0000000000000..a8487cdcd76ec --- /dev/null +++ b/bench/bench_existence.py @@ -0,0 +1,285 @@ +from __future__ import division + +import os +import sys +from itertools import cycle + +from timeit import Timer +import pandas as pd ...
![enhancing_performance](https://cloud.githubusercontent.com/assets/1731217/3224419/636f5dfc-f034-11e3-90e8-1469a162b674.png) I've included some documentation on existence-type associations as requested by Jeff in [this question](http://stackoverflow.com/questions/23945493/a-faster-alternative-to-pandas-isin-function/...
https://api.github.com/repos/pandas-dev/pandas/pulls/7398
2014-06-09T03:25:04Z
2015-07-12T15:00:43Z
null
2015-07-12T15:00:43Z
to_stata uint16
diff --git a/pandas/io/stata.py b/pandas/io/stata.py index b67a1be8d43d6..d1827a793ba71 100644 --- a/pandas/io/stata.py +++ b/pandas/io/stata.py @@ -230,13 +230,13 @@ def _cast_to_stata_types(data): ws = '' for col in data: dtype = data[col].dtype - if dtype == np.int8: + if dtype in (n...
Simple changes to io/stata.py to write unsigned integers to Stata files. Sorry about the poor commit messages--I'm still new to git and wasn't able to correct it cleanly. (See issue #7365)
https://api.github.com/repos/pandas-dev/pandas/pulls/7397
2014-06-09T01:54:45Z
2014-07-17T03:05:18Z
null
2014-07-17T03:05:28Z
BUG: grouped hist and scatter use old figsize default
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index e8c7a6f9ab462..653048285330e 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -175,6 +175,7 @@ Bug Fixes - Bug in ``value_counts`` where ``NaT`` did not qualify as missing (``NaN``) (:issue:`7423`) +- Bug in grouped ``hist`` and ...
Grouped `hist` and `scatter` plots use `figsize` default which is different from pandas current and mpl.
https://api.github.com/repos/pandas-dev/pandas/pulls/7394
2014-06-08T04:26:27Z
2014-07-01T15:29:22Z
2014-07-01T15:29:22Z
2014-07-02T16:46:36Z
BUG/TST: test for groupby max nan subselection bug
diff --git a/pandas/tests/test_groupby.py b/pandas/tests/test_groupby.py index 4aae5dfea3982..1f1853186ac8a 100644 --- a/pandas/tests/test_groupby.py +++ b/pandas/tests/test_groupby.py @@ -4369,6 +4369,17 @@ def test_ops_general(self): exc.args += ('operation: %s' % op,) raise + d...
closes #6346
https://api.github.com/repos/pandas-dev/pandas/pulls/7393
2014-06-08T01:29:44Z
2014-06-08T03:02:20Z
2014-06-08T03:02:20Z
2014-07-09T18:20:25Z
TST: Changed the error raised by no tables in data.Options
diff --git a/pandas/io/data.py b/pandas/io/data.py index e875e8aa3c6db..525a7ce64f0c2 100644 --- a/pandas/io/data.py +++ b/pandas/io/data.py @@ -664,7 +664,9 @@ def _get_option_data(self, month, year, expiry, table_loc, name): "element".format(url)) tables = root.xpat...
Tests were failing if the scraper got the webpage but there weren't any tables in it. Added condition to raise RemoteDataError if no tables were found. Still IndexError if it can't find the correct table. fixes #7335
https://api.github.com/repos/pandas-dev/pandas/pulls/7392
2014-06-07T22:09:31Z
2014-06-08T01:35:01Z
2014-06-08T01:35:01Z
2014-06-17T16:37:06Z
BUG: inconsistent subplot ax handling
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 850e7e13db2ff..6188f182f1a82 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -176,6 +176,8 @@ Bug Fixes - Bug in ``to_timedelta`` that accepted invalid units and misinterpreted 'm/h' (:issue:`7611`, :issue: `6423`) - Bug in group...
There is an inconsistency `DataFrame.plot`, `hist` and `boxplot` when subplot enabled (`subplots=True` or use `by` kw). ### Current behaviour - `plot` and `hist`: When `ax` kw is passed, plot will be drawn on the figure which the passed ax belongs. The figure will be once cleared even if the required number of subplo...
https://api.github.com/repos/pandas-dev/pandas/pulls/7391
2014-06-07T21:45:50Z
2014-07-06T14:09:51Z
2014-07-06T14:09:51Z
2014-07-09T12:39:17Z
BUG: ix should return a Series for duplicate indices
diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py index 68e5810751d08..c47fcb3a98347 100644 --- a/pandas/core/indexing.py +++ b/pandas/core/indexing.py @@ -36,6 +36,18 @@ class IndexingError(Exception): pass +def _reconstruct_from_dup_ix(key, obj, values): + if np.isscalar(values): + ret...
closes #7150 it seems like there's a better way to do this ....
https://api.github.com/repos/pandas-dev/pandas/pulls/7390
2014-06-07T21:29:45Z
2014-06-09T12:54:56Z
null
2014-07-09T18:20:25Z
BLD/TST/DEV: update tox to use python 3.4
diff --git a/tox.ini b/tox.ini index 51480832284b9..b11a71f531524 100644 --- a/tox.ini +++ b/tox.ini @@ -4,15 +4,21 @@ # and then run "tox" from this directory. [tox] -envlist = py26, py27, py32, py33 +envlist = py26, py27, py32, py33, py34 [testenv] deps = cython - numpy >= 1.6.1 nose - pytz >=...
- now installs any optional dep not relying on numpy for better local test coverage - you can now pass arguments that will go to nosetests (e.g., for running network tests) - removed tox_prll.ini because you can `pip install detox` and it will automatically build run and test across the configuration in tox.ini
https://api.github.com/repos/pandas-dev/pandas/pulls/7389
2014-06-07T20:37:53Z
2014-06-07T22:29:30Z
2014-06-07T22:29:30Z
2014-06-14T06:24:14Z
TST/BUG: use BytesIO for Python 3.4 TestEncoding
diff --git a/pandas/io/tests/test_html.py b/pandas/io/tests/test_html.py index a20a8945eeb11..326b7bc004564 100644 --- a/pandas/io/tests/test_html.py +++ b/pandas/io/tests/test_html.py @@ -20,7 +20,7 @@ from pandas import (DataFrame, MultiIndex, read_csv, Timestamp, Index, date_range, Series) -f...
null
https://api.github.com/repos/pandas-dev/pandas/pulls/7388
2014-06-07T19:00:57Z
2014-06-07T19:37:22Z
2014-06-07T19:37:22Z
2014-07-12T06:03:54Z
BUG: Revisit DatetimeIndex.insert doesnt preserve name and tz
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 2b76da1434ba3..6e3b23898d08f 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -166,6 +166,8 @@ Bug Fixes +- BUG in ``DatetimeIndex.insert`` doesn't preserve ``name`` and ``tz`` (:issue:`7299`) +- BUG in ``DatetimeIndex.asobject`...
Closes #7378. The previous error was unrelated to `insert` logic. It seems to be caused by DST related to `tslib` or `pytz`, and became obvious by the previous test case.
https://api.github.com/repos/pandas-dev/pandas/pulls/7386
2014-06-07T15:44:49Z
2014-06-11T12:48:06Z
2014-06-11T12:48:06Z
2014-06-15T03:13:46Z
ENH: automatic rpy2 instance conversion
diff --git a/pandas/rpy/common.py b/pandas/rpy/common.py index 55adad3610816..a0ccc72f7ab1c 100644 --- a/pandas/rpy/common.py +++ b/pandas/rpy/common.py @@ -10,38 +10,69 @@ import pandas as pd import pandas.core.common as com -import pandas.util.testing as _test from rpy2.robjects.packages import importr -from r...
Derived from #7309. Create a wrapper for `robjects.r` in `pandas.rpy.common` to perform automatic pandas `DataFrame` and `Series` conversion. `Series` will be converted to R data.frame to preserve rownames (index). If looks OK, I'll modify the doc (#7309) based on following API. ``` import pandas as pd import pandas....
https://api.github.com/repos/pandas-dev/pandas/pulls/7385
2014-06-07T14:08:11Z
2015-03-08T14:39:07Z
null
2023-05-11T01:12:29Z
BUG: correct Period comparisons
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 3e06a705487df..89ef5aead027b 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -35,6 +35,10 @@ API changes ``float`` (:issue:`7242`) - `StringMethods`` now work on empty Series (:issue:`7242`) +- ``Period`` objects no longer rais...
closes #7376
https://api.github.com/repos/pandas-dev/pandas/pulls/7379
2014-06-06T19:40:15Z
2014-06-06T23:28:58Z
2014-06-06T23:28:58Z
2014-06-25T19:42:16Z
ENH/BUG: Offset.apply dont preserve time
diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index 0303b41e42e55..795bbca673f77 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -539,6 +539,25 @@ The ``rollforward`` and ``rollback`` methods do exactly what you would expect: It's definitely worth exploring the ``pandas.t...
Closes #7156.
https://api.github.com/repos/pandas-dev/pandas/pulls/7375
2014-06-06T16:08:58Z
2014-06-11T14:08:31Z
2014-06-11T14:08:31Z
2014-07-09T15:34:02Z
BUG: resample raises ValueError when NaT is included
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index cfdef3adb1f34..1f445173d569c 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -225,6 +225,7 @@ Bug Fixes +- BUG in ``resample`` raises ``ValueError`` when target contains ``NaT`` (:issue:`7227`) diff --git a/pandas/core/gr...
Closes #7227. `resample(how=count)` should work now. There are some aggregations which doesn't work with `TimeGrouper` yet, I'll open separate issue.
https://api.github.com/repos/pandas-dev/pandas/pulls/7373
2014-06-06T15:12:56Z
2014-06-14T14:00:51Z
2014-06-14T14:00:51Z
2014-06-14T15:34:24Z
BUG: infer_freq results in None for hourly freq with timezone
diff --git a/pandas/tseries/frequencies.py b/pandas/tseries/frequencies.py index 70eab4dde8c1f..09ff6578160f8 100644 --- a/pandas/tseries/frequencies.py +++ b/pandas/tseries/frequencies.py @@ -668,8 +668,12 @@ class _FrequencyInferer(object): def __init__(self, index, warn=True): self.index = index ...
Found fix #7318 was incorrect. It works for lower frequencies than dates, but not for higher freq than hours. I couldn't detect as test cases are also incorrect... This should work for all the freqs with timezones. NOTE: I couldn't use normal `tslib.tz_convert` which returns incorrect results maybe caused by DST. Ap...
https://api.github.com/repos/pandas-dev/pandas/pulls/7371
2014-06-06T11:53:48Z
2014-06-06T13:00:33Z
2014-06-06T13:00:33Z
2014-07-05T04:49:40Z
ENH: change BlockManager pickle format to work with dup items
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 1aaf77625cf7f..96b611bc9afec 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -135,6 +135,9 @@ Enhancements - All offsets ``apply``, ``rollforward`` and ``rollback`` can now handle ``np.datetime64``, previously results in ``ApplyType...
Old `BlockManager` pickle format stored items which were ambiguous and not enough for unpickling if non-unique. After recent BlockManager overhaul, #6745, it's now possible to it's no longer necessary to share items/ref-items between Blocks and their respective managers<del>, so Blocks can now be safely pickled/unpick...
https://api.github.com/repos/pandas-dev/pandas/pulls/7370
2014-06-06T08:13:30Z
2014-07-01T10:11:23Z
2014-07-01T10:11:23Z
2014-07-01T10:15:36Z
add fix for opening zero observation dta files
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 3e06a705487df..22898c1b02c67 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -123,3 +123,4 @@ Bug Fixes - Bug where a string column name assignment to a ``DataFrame`` with a ``Float64Index`` raised a ``TypeError`` during a call t...
Opening a Stata dta file with no observations (but having variables) resulted in an error. Example file: https://dl.dropboxusercontent.com/u/6705315/no_obs_v115.dta. ``` python >>> import pandas as pd >>> pd.read_stata("no_obs_v115.dta") Traceback (most recent call last): File "<stdin>", line 1, in <module> File "...
https://api.github.com/repos/pandas-dev/pandas/pulls/7369
2014-06-06T04:38:38Z
2014-06-13T20:32:59Z
2014-06-13T20:32:59Z
2014-06-13T20:33:41Z
BUG/REG: fix float64index -> mixed float assignment
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 0a89806c899a4..3e06a705487df 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -120,3 +120,6 @@ Bug Fixes - Bug all ``StringMethods`` now work on empty Series (:issue:`7242`) - Fix delegation of `read_sql` to `read_sql_query` when qu...
closes #7366
https://api.github.com/repos/pandas-dev/pandas/pulls/7368
2014-06-06T03:46:56Z
2014-06-06T04:32:03Z
2014-06-06T04:32:03Z
2014-06-15T12:57:35Z
BUG/REG: fix float64index -> mixed float assignment
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 0a89806c899a4..3e06a705487df 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -120,3 +120,6 @@ Bug Fixes - Bug all ``StringMethods`` now work on empty Series (:issue:`7242`) - Fix delegation of `read_sql` to `read_sql_query` when qu...
closes #7366
https://api.github.com/repos/pandas-dev/pandas/pulls/7367
2014-06-06T03:02:28Z
2014-06-06T03:45:40Z
null
2014-07-12T06:13:01Z
BUG: Fix error when reading postgres table with timezone #7139
diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt index d130879b85475..54ba2ac6586d0 100644 --- a/doc/source/whatsnew/v0.16.1.txt +++ b/doc/source/whatsnew/v0.16.1.txt @@ -52,7 +52,7 @@ Bug Fixes - Bug in ``transform`` causing length mismatch when null entries were present and a fast a...
Closes #7139, merged via https://github.com/pydata/pandas/commit/c3eeb577b2b06ecc65e96c5f5de69f0fba01c3dd Fixes an issue where read_sql_table() will throw an error if it is reading a postgres table with `timestamp with time zone` fields that contain entries with different time zones (such as for DST). This also adds ...
https://api.github.com/repos/pandas-dev/pandas/pulls/7364
2014-06-06T01:39:15Z
2015-04-13T21:40:43Z
null
2015-04-17T13:32:33Z
TST7337: Fix test failures on windows.
diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index aed54ab0f5040..0303b41e42e55 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -12,6 +12,8 @@ randint = np.random.randint np.set_printoptions(precision=4, suppress=True) options.display.max_rows=15 + import da...
closes #7337 Use dateutil.tz.tzutc() to construct UTC timezone instead of dateutil.tz.gettz('UTC') Update docs to reflect this. Tidy up examples in the timezones section of the docs.
https://api.github.com/repos/pandas-dev/pandas/pulls/7362
2014-06-05T21:40:15Z
2014-06-09T20:51:41Z
2014-06-09T20:51:41Z
2014-07-12T05:50:43Z
Add test for core.nanops and fix several bugs in nanops
diff --git a/pandas/core/nanops.py b/pandas/core/nanops.py index b40334c1857ac..acc79e056689b 100644 --- a/pandas/core/nanops.py +++ b/pandas/core/nanops.py @@ -75,7 +75,8 @@ def f(values, axis=None, skipna=True, **kwds): result.fill(0) return result - ...
This pull request accomplishes two main things: 1. It adds unit tests for `nanops` 2. It fixes several bugs identified by the unit tests related #7352 related #7353 related #7354 related #7357
https://api.github.com/repos/pandas-dev/pandas/pulls/7358
2014-06-05T17:08:03Z
2014-06-11T14:33:38Z
null
2014-06-22T15:28:29Z
ENH/GBY: add nlargest/nsmallest to Series.groupby
diff --git a/doc/source/groupby.rst b/doc/source/groupby.rst index c0db87d58ef08..22f1414c4f2b0 100644 --- a/doc/source/groupby.rst +++ b/doc/source/groupby.rst @@ -664,6 +664,18 @@ In this example, we chopped the collection of time series into yearly chunks then independently called :ref:`fillna <missing_data.fillna>...
closes #7053
https://api.github.com/repos/pandas-dev/pandas/pulls/7356
2014-06-05T16:49:29Z
2014-06-09T03:00:56Z
2014-06-09T03:00:56Z
2014-06-20T10:13:21Z
CLN: Simplify boxplot and tests
diff --git a/pandas/tests/test_graphics.py b/pandas/tests/test_graphics.py index e0bb179132b34..c49607eef1b42 100644 --- a/pandas/tests/test_graphics.py +++ b/pandas/tests/test_graphics.py @@ -356,6 +356,54 @@ def _check_has_errorbars(self, axes, xerr=0, yerr=0): self.assertEqual(xerr, xerr_count) ...
Simplified `boxplot` func, and removed duplicated tests.
https://api.github.com/repos/pandas-dev/pandas/pulls/7351
2014-06-05T15:33:48Z
2014-06-17T14:36:59Z
2014-06-17T14:36:59Z
2014-06-17T14:37:02Z
BUG: Bug in .loc with a list of indexers on a single-multi index level (that is not nested) GH7349
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index f83cd50bbd8c5..0bc30e14ed5fc 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -21,8 +21,6 @@ users upgrade to this version. - :ref:`Deprecations <whatsnew_0141.deprecations>` -- :ref:`Known Issues <whatsnew_0141.knownissues>` - ...
closes #7349
https://api.github.com/repos/pandas-dev/pandas/pulls/7350
2014-06-05T12:34:39Z
2014-06-05T13:30:46Z
2014-06-05T13:30:46Z
2014-06-27T12:37:06Z
TST7337: Try to resolve windows test failures.
diff --git a/pandas/tslib.pyx b/pandas/tslib.pyx index e7385400e5962..4ae3508e06dd5 100644 --- a/pandas/tslib.pyx +++ b/pandas/tslib.pyx @@ -1029,7 +1029,7 @@ cdef inline object _get_zone(object tz): return 'UTC' else: if _treat_tz_as_dateutil(tz): - return 'dateutil/' + tz._filename.s...
This change fixes broken tests on windows following `ENH: Support dateutil timezones` closes #7337
https://api.github.com/repos/pandas-dev/pandas/pulls/7346
2014-06-04T20:19:04Z
2014-06-04T20:21:00Z
null
2014-07-09T11:44:26Z
COMPAT: tests compat with current timezones (pytz) (GH7339)
diff --git a/pandas/tseries/tests/test_timezones.py b/pandas/tseries/tests/test_timezones.py index b3ae02320037c..5fb1f9db620ae 100644 --- a/pandas/tseries/tests/test_timezones.py +++ b/pandas/tseries/tests/test_timezones.py @@ -403,7 +403,8 @@ def test_with_tz(self): # normalized central = dr.tz_conv...
closes #7339
https://api.github.com/repos/pandas-dev/pandas/pulls/7343
2014-06-04T18:16:06Z
2014-06-04T20:17:29Z
2014-06-04T20:17:29Z
2014-07-12T06:28:16Z
PERF: better dtype inference for perf gains (GH7332)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index bb4ecddd58f16..2cc08abf9c57c 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -75,6 +75,10 @@ Enhancements Performance ~~~~~~~~~~~ +- Improvements in dtype inference for numeric operations involving yielding performance gains +for...
closes #7332 for some reason `int64` was not being looked up correctly in the _TYPE_MAP table. changing to work on name/kind makes this more efficient. separately better inference of timedelta conversions from i8 were not being done so that yields a big boost ``` -----------------------------------------------------...
https://api.github.com/repos/pandas-dev/pandas/pulls/7342
2014-06-04T17:02:55Z
2014-06-04T20:30:39Z
2014-06-04T20:30:39Z
2014-06-21T02:59:17Z
FIX: resample with fill_method and how #2073
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 20620f15944f0..b1e1f77d0b833 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -89,6 +89,7 @@ Bug Fixes ~~~~~~~~~ - Bug in ``Index.min`` and ``max`` doesn't handle ``nan`` and ``NaT`` properly (:issue:`7261`) +- Bug in ``resample``...
closes #2073
https://api.github.com/repos/pandas-dev/pandas/pulls/7341
2014-06-04T16:46:05Z
2014-06-04T19:47:32Z
2014-06-04T19:47:32Z
2014-07-12T06:26:14Z
add class=„pandas-empty“ to NaN-cells’ HTML
diff --git a/pandas/core/format.py b/pandas/core/format.py index c2f439877ca00..f344d4b009df9 100644 --- a/pandas/core/format.py +++ b/pandas/core/format.py @@ -711,6 +711,8 @@ def write_th(self, s, indent=0, tags=None): return self._write_cell(s, kind='th', indent=indent, tags=tags) def write_td(self, ...
This PR is related to #5330, but is much simpler. There is no new API, this just allows styling empty cells using CSS, e.g. using ``` css td.pandas-empty { color: #eee } ``` to de-emphasize, or ``` css td.pandas-empty { background-color: yellow } ``` to let empty cells stand out.
https://api.github.com/repos/pandas-dev/pandas/pulls/7338
2014-06-04T14:33:26Z
2014-06-05T16:04:24Z
null
2014-06-14T15:47:54Z
BUG: Series.map fails when keys are tuples of different lengths (#7333)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index ff35ce9ca3069..60dbaf9d7427e 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -116,3 +116,4 @@ Bug Fixes - Bug in ``CustomBusinessDay.apply`` raiases ``NameError`` when ``np.datetime64`` object is passed (:issue:`7196`) - Bug in ``M...
closes #7333 seems to be due to the new behaviour of `Series`, which will automatically create a MultiIndex out of the dict's keys when creating a series to map the values. The MultiIndex doesn't match the values for the shorter tuples, so they fail to map. The fix is fairly simple, just pass the dict keys explicitly ...
https://api.github.com/repos/pandas-dev/pandas/pulls/7336
2014-06-04T13:22:59Z
2014-06-05T17:57:28Z
2014-06-05T17:57:28Z
2014-06-16T14:59:08Z
ENH group attribute access for HDFStore
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 214994a6fc185..b776b9afe4417 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -889,6 +889,8 @@ def to_hdf(self, path_or_buf, key, **kwargs): in the store wherever possible fletcher32 : bool, default False ...
Summary: - `store.set_attrs(key, **attrs)` to set attributes of a group - `store.get_attrs(key, attrs, default)` returns namedtuple with values from a groups attributes or single attribute directly if attrs is specified as a single string - `to_hdf`, `put` and `append` have optional `attrs=dict(...)` argument to update...
https://api.github.com/repos/pandas-dev/pandas/pulls/7334
2014-06-04T11:36:56Z
2015-01-18T21:36:57Z
null
2015-01-18T21:36:57Z
BUG: Bug in broadcasting with .div, integer dtypes and divide-by-zero (GH7325)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index d4598e0aece37..608c368c79ed4 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -87,3 +87,4 @@ Bug Fixes (:issue:`7315`). - Bug in inferred_freq results in None for eastern hemisphere timezones (:issue:`7310`) - Bug in ``Easter`` r...
closes #7325
https://api.github.com/repos/pandas-dev/pandas/pulls/7328
2014-06-03T23:39:45Z
2014-06-04T00:03:36Z
2014-06-04T00:03:36Z
2014-06-16T02:31:33Z
BUG: already mixed indexes should not sort
diff --git a/pandas/core/index.py b/pandas/core/index.py index 146b7cd0eb503..8b2c7bde44782 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -2,7 +2,6 @@ import datetime import warnings from functools import partial -import warnings from pandas.compat import range, zip, lrange, lzip, u, reduce from ...
cc @jreback
https://api.github.com/repos/pandas-dev/pandas/pulls/7327
2014-06-03T22:58:25Z
2014-06-04T20:53:41Z
2014-06-04T20:53:41Z
2014-07-07T05:52:08Z
BUG: fix read_sql delegation for queries without select statement (GH7324)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 3a53b5629c6e3..0a89806c899a4 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -117,3 +117,6 @@ Bug Fixes - Bug in ``MultiIndex.append``, ``concat`` and ``pivot_table`` don't preserve timezone (:issue:`6606`) - Bug in ``.loc`` with a...
Closes #7324. The `if 'select' in ...'` check was introduced for mysql legacy compatibility, but introduced problem if the query did not contain a select statement (eg a stored procedure). This should solve this, and passes the test suite (locally).
https://api.github.com/repos/pandas-dev/pandas/pulls/7326
2014-06-03T22:10:49Z
2014-06-05T21:25:09Z
2014-06-05T21:25:09Z
2014-08-24T10:28:40Z
UNI/HTML/WIP: add encoding argument to read_html
https://github.com/pandas-dev/pandas/pull/7323.diff
closes #7220
https://api.github.com/repos/pandas-dev/pandas/pulls/7323
2014-06-03T15:31:29Z
2014-06-04T14:03:24Z
2014-06-04T14:03:24Z
2014-06-15T10:03:30Z
BUG: xlim on plots with shared axes (GH2960, GH3490)
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 42041cceeb81b..9f9a87f642a4d 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -270,6 +270,9 @@ Bug Fixes - Bug in non-monotonic ``Index.union`` may preserve ``name`` incorrectly (:issue:`7458`) - Bug in ``DatetimeIndex.intersection`...
Fixes #2960 Fixes #3490. Summary of changes: - for irregular timeseries plots, considers all lines already plotted when calculating xlim - for plots with secondary_y axis, considers lines on both left and right axes when calculating xlim. There are tests for non-timeseries plots (always worked, but now a test to conf...
https://api.github.com/repos/pandas-dev/pandas/pulls/7322
2014-06-03T15:28:12Z
2014-07-01T23:59:35Z
2014-07-01T23:59:35Z
2014-07-03T20:56:46Z
BUG: Revisit Index.delete preserves freq
diff --git a/pandas/core/index.py b/pandas/core/index.py index 8b2c7bde44782..9ccc2e694f92f 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -1774,9 +1774,7 @@ def delete(self, loc): ------- new_index : Index """ - return self._simple_new(np.delete(self, loc), self.name,...
Fix the issue that freq is preserved inappropriately, caused by #7302. Fix preserves freq if edge element is being deleted (same as #7299). CC: @rosnfeld
https://api.github.com/repos/pandas-dev/pandas/pulls/7320
2014-06-03T13:38:41Z
2014-06-05T16:01:00Z
2014-06-05T16:01:00Z
2014-07-12T06:20:06Z
BUG: inferred_freq results in None with eastern hemisphere timezones
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 45e0e15d311b4..48eac7fb1b761 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -85,3 +85,4 @@ Bug Fixes - Bug in ``isnull()`` when ``mode.use_inf_as_null == True`` where isnull wouldn't test ``True`` when it encountered an ``inf``/...
Closes #7310
https://api.github.com/repos/pandas-dev/pandas/pulls/7318
2014-06-03T11:25:36Z
2014-06-03T13:16:57Z
2014-06-03T13:16:57Z
2014-07-01T15:08:30Z
CLN/DOC: Remove trailing whitespace from .rst files in doc folder
diff --git a/doc/source/comparison_with_sql.rst b/doc/source/comparison_with_sql.rst index 3d8b85e9460c4..4d0a2b80c9949 100644 --- a/doc/source/comparison_with_sql.rst +++ b/doc/source/comparison_with_sql.rst @@ -3,11 +3,11 @@ Comparison with SQL ******************** -Since many potential pandas users have some fam...
https://api.github.com/repos/pandas-dev/pandas/pulls/7317
2014-06-03T02:35:47Z
2014-06-03T10:10:20Z
2014-06-03T10:10:20Z
2014-06-26T13:18:58Z
BUG: isnull doesn't properly check for inf when requested
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 248fa098c7269..45e0e15d311b4 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -82,3 +82,6 @@ Bug Fixes (:issue:`7140`). - Bug in ``StringMethods.extract()`` where a single match group Series would use the matcher's name instead...
closes #7314
https://api.github.com/repos/pandas-dev/pandas/pulls/7315
2014-06-02T17:47:44Z
2014-06-03T00:44:37Z
2014-06-03T00:44:37Z
2014-06-24T04:07:16Z
BUG: single group series should preserve group name
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index adaffa1fca1be..248fa098c7269 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -80,3 +80,5 @@ Bug Fixes - Bug in ``Float64Index`` which didn't allow duplicates (:issue:`7149`). - Bug in ``DataFrame.replace()`` where truthy values wer...
Extract currently doesn't preserve group names when a series is returned. This PR fixes that.
https://api.github.com/repos/pandas-dev/pandas/pulls/7313
2014-06-02T15:17:23Z
2014-06-02T20:51:23Z
2014-06-02T20:51:23Z
2014-06-13T04:48:46Z
BUG: quantile ignores axis kwarg
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 20620f15944f0..df2e86ed34d7e 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -111,3 +111,4 @@ Bug Fixes - Bug in ``CustomBusinessDay.apply`` raiases ``NameError`` when ``np.datetime64`` object is passed (:issue:`7196`) - Bug in ``M...
Closes https://github.com/pydata/pandas/issues/7306 We may want to wait on this till later today while I figure out what will happen in https://github.com/pydata/pandas/issues/7308
https://api.github.com/repos/pandas-dev/pandas/pulls/7312
2014-06-02T14:54:00Z
2014-06-11T15:10:21Z
2014-06-11T15:10:21Z
2016-11-03T12:38:03Z
BUG/TST: should skip openpyxl before testing version compat
diff --git a/pandas/io/tests/test_excel.py b/pandas/io/tests/test_excel.py index 5928e99ed055c..b45897dff9aa2 100644 --- a/pandas/io/tests/test_excel.py +++ b/pandas/io/tests/test_excel.py @@ -1217,9 +1217,9 @@ def test_ExcelWriter_dispatch(self): import xlsxwriter writer_klass = _XlsxWriter ...
null
https://api.github.com/repos/pandas-dev/pandas/pulls/7311
2014-06-02T14:52:11Z
2014-06-02T16:51:23Z
2014-06-02T16:51:23Z
2014-06-14T21:27:05Z
DOC: Complete R interface section
diff --git a/doc/source/r_interface.rst b/doc/source/r_interface.rst index 98fc4edfd5816..da33c65f3c81f 100644 --- a/doc/source/r_interface.rst +++ b/doc/source/r_interface.rst @@ -6,6 +6,11 @@ :suppress: from pandas import * + import numpy as np + np.random.seed(123456) + import matplotlib.pyplot as pl...
Currently, "rpy2 R interface" documentation has blank section. Added descriptions to cover required basic topics.
https://api.github.com/repos/pandas-dev/pandas/pulls/7309
2014-06-02T13:49:13Z
2015-03-08T14:39:50Z
null
2015-03-31T13:31:25Z
CLN/DOC: Change instances of "Pandas" to "pandas" in documentation
diff --git a/doc/make.py b/doc/make.py index 88e5a939eef46..8a92654d1378b 100755 --- a/doc/make.py +++ b/doc/make.py @@ -300,7 +300,7 @@ def _get_config(): import argparse argparser = argparse.ArgumentParser(description=""" -Pandas documentation builder +pandas documentation builder """.strip()) # argparser.add...
https://api.github.com/repos/pandas-dev/pandas/pulls/7305
2014-06-02T01:25:39Z
2014-06-03T13:03:14Z
2014-06-03T13:03:14Z
2014-07-02T11:30:45Z
BUG: replace() alters unrelated values
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index b430d2eed5a10..cda800b0f0111 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -77,3 +77,5 @@ Bug Fixes sign were being treated as temporaries attempting to be deleted (:issue:`7300`). - Bug in ``Float64Index`` which didn't allo...
closes #7140
https://api.github.com/repos/pandas-dev/pandas/pulls/7304
2014-06-01T21:05:19Z
2014-06-02T14:43:50Z
2014-06-02T14:43:50Z
2014-06-17T04:56:54Z
BUG: do not remove temporaries from eval/query scope
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 8d2275b2f51c5..c19a3951ac359 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -71,3 +71,6 @@ Bug Fixes and ``left`` keyword is specified (:issue:`7226`) - BUG in ``DataFrame.hist`` raises ``TypeError`` when it contains non numeric...
closes #7300
https://api.github.com/repos/pandas-dev/pandas/pulls/7303
2014-06-01T13:25:57Z
2014-06-01T21:14:22Z
2014-06-01T21:14:22Z
2014-06-16T19:22:42Z
BUG: Index.delete doesnt preserve name and other attrs
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 5e1d237b2b559..8d2275b2f51c5 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -70,3 +70,4 @@ Bug Fixes - Bug in ``DataFrame`` and ``Series`` bar and barh plot raises ``TypeError`` when ``bottom`` and ``left`` keyword is specified ...
Made `Index.delete` to preserve `name`, `tz` and `freq` attributes.
https://api.github.com/repos/pandas-dev/pandas/pulls/7302
2014-05-31T23:12:44Z
2014-06-01T16:37:17Z
2014-06-01T16:37:17Z
2014-06-16T10:54:28Z
BUG: DatetimeIndex.insert doesnt preserve name and tz
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 3e06a705487df..20067b75755bb 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -123,3 +123,5 @@ Bug Fixes - Bug where a string column name assignment to a ``DataFrame`` with a ``Float64Index`` raised a ``TypeError`` during a call t...
`DatetimeIndex.insert` doesn't preserve `name` and `tz` attributes. Also modified `DatetimeIndex.asobject` to return an object `Index` which has the same name as original to cover the case when the result is being object `Index`. ``` # normal Index preserves its name after insertion idx = pd.Index([1, 2, 3], name='no...
https://api.github.com/repos/pandas-dev/pandas/pulls/7299
2014-05-31T22:06:03Z
2014-06-06T12:58:23Z
2014-06-06T12:58:23Z
2014-06-12T06:09:49Z
TST: fix intermittent dict_complex test failures
diff --git a/pandas/io/tests/test_packers.py b/pandas/io/tests/test_packers.py index 46d3124a06a0b..9633f567ab098 100644 --- a/pandas/io/tests/test_packers.py +++ b/pandas/io/tests/test_packers.py @@ -149,8 +149,9 @@ def test_dict_float(self): def test_dict_complex(self): x = {'foo': 1.0 + 1.0j, 'bar': 2....
`test_dict_complex` and `test_dict_numpy_complex` would give occasional test failures on Python 3.4. The test was written to depend on the order of values from `dict.values()`; remove that dependency. Closes gh-7293.
https://api.github.com/repos/pandas-dev/pandas/pulls/7298
2014-05-31T20:38:43Z
2014-05-31T21:38:13Z
2014-05-31T21:38:13Z
2014-07-01T00:16:02Z
CLN/TST remove compat.scipy
diff --git a/pandas/compat/scipy.py b/pandas/compat/scipy.py deleted file mode 100644 index 06da8799d0c96..0000000000000 --- a/pandas/compat/scipy.py +++ /dev/null @@ -1,159 +0,0 @@ -""" -Shipping functions from SciPy to reduce dependency on having SciPy installed -""" - -from pandas.compat import range, lrange -import...
re-branch of https://github.com/pydata/pandas/pull/7253#issue-34432164 -Move `percentileofscore` to `stats.misc`; Update `percentileRank` to reflect the move. -Change testing references to `compat.scipy.rankdata()` , to use `scipy.stats.rankdata` directly -Delete compat.scipy
https://api.github.com/repos/pandas-dev/pandas/pulls/7296
2014-05-31T17:50:48Z
2014-06-01T02:51:45Z
2014-06-01T02:51:45Z
2014-07-02T11:30:39Z
fix string format for Python 2.6
diff --git a/pandas/io/excel.py b/pandas/io/excel.py index 36af8b1da0e30..82ad17258113f 100644 --- a/pandas/io/excel.py +++ b/pandas/io/excel.py @@ -622,7 +622,7 @@ def _convert_to_style(cls, style_dict): if openpyxl_compat.is_compat(): register_writer(_OpenpyxlWriter) else: - warn('Installed openpyxl is not ...
This PR fixes a minor string formatting problem when running under Python 2.6
https://api.github.com/repos/pandas-dev/pandas/pulls/7291
2014-05-31T05:07:04Z
2014-05-31T08:47:29Z
null
2014-06-18T15:50:56Z
TST: Use ISO8601 format for DTI partial slicing
diff --git a/pandas/tseries/tests/test_period.py b/pandas/tseries/tests/test_period.py index b5034993f34fd..e0aea9a1a29b1 100644 --- a/pandas/tseries/tests/test_period.py +++ b/pandas/tseries/tests/test_period.py @@ -1973,8 +1973,8 @@ def test_range_slice_outofbounds(self): tm.assert_frame_equal(df['2013/1...
Closes #7289.
https://api.github.com/repos/pandas-dev/pandas/pulls/7290
2014-05-31T04:16:41Z
2014-05-31T08:36:26Z
2014-05-31T08:36:26Z
2014-06-28T10:58:37Z
BUG/CI/TST: fix format strings
diff --git a/ci/requirements-2.6.txt b/ci/requirements-2.6.txt index d90774e159ccc..4ed488795fb07 100644 --- a/ci/requirements-2.6.txt +++ b/ci/requirements-2.6.txt @@ -10,6 +10,6 @@ sqlalchemy==0.8.1 scipy==0.11.0 statsmodels==0.4.3 xlwt==0.7.5 -openpyxl==1.6.2 +openpyxl==2.0.3 xlsxwriter==0.4.6 xlrd==0.9.2 diff ...
Also test against an unsupported version of openpyxl (2.0.3) closes #7284
https://api.github.com/repos/pandas-dev/pandas/pulls/7285
2014-05-30T15:54:36Z
2014-06-02T11:29:30Z
2014-06-02T11:29:30Z
2014-06-12T12:04:55Z
ENH/TST: add anonymous reading of s3 for public buckets
diff --git a/ci/requirements-2.7.txt b/ci/requirements-2.7.txt index 01b321e6fdd6e..2e0e20b047ee0 100644 --- a/ci/requirements-2.7.txt +++ b/ci/requirements-2.7.txt @@ -20,3 +20,4 @@ scipy==0.13.3 beautifulsoup4==4.2.1 statsmodels==0.5.0 bigquery==2.0.17 +boto==2.26.1 diff --git a/doc/source/v0.14.1.txt b/doc/source...
closes #7246
https://api.github.com/repos/pandas-dev/pandas/pulls/7281
2014-05-29T23:51:45Z
2014-06-02T16:33:13Z
2014-06-02T16:33:13Z
2014-06-12T09:23:03Z
FIX DataFrame diff with timedelta
diff --git a/pandas/core/common.py b/pandas/core/common.py index 00fa970c0f77a..884a841f6da7c 100644 --- a/pandas/core/common.py +++ b/pandas/core/common.py @@ -813,7 +813,8 @@ def diff(arr, n, axis=0): na_indexer[axis] = slice(None, n) if n >= 0 else slice(n, None) out_arr[tuple(na_indexer)] = na - if a...
fixes #4533 _need to fix test in numpy 1.6..._
https://api.github.com/repos/pandas-dev/pandas/pulls/7280
2014-05-29T21:40:05Z
2014-09-09T23:25:57Z
null
2014-09-09T23:30:37Z
BUG: Index.min and max doesnt handle nan and NaT properly
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 0aa30e536ef48..ef8de452d1d38 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -65,3 +65,4 @@ There are no experimental changes in 0.14.1 Bug Fixes ~~~~~~~~~ +- Bug in ``Index.min`` and ``max`` doesn't handle ``nan`` and ``NaT`` pr...
Closes #7261.
https://api.github.com/repos/pandas-dev/pandas/pulls/7279
2014-05-29T20:05:50Z
2014-05-30T14:24:07Z
2014-05-30T14:24:07Z
2014-06-29T10:25:42Z
BUG: hist raises TypeError when df contains non numeric column
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 0aa30e536ef48..f9df328e7f3a3 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -65,3 +65,5 @@ There are no experimental changes in 0.14.1 Bug Fixes ~~~~~~~~~ +- BUG in ``DataFrame.hist`` raises ``TypeError`` when it contains non nu...
`DataFrame.hist` without `by` keyword raises `TypeError` when it contains non-numeric column. ``` import pandas as pd import numpy as np import matplotlib.pyplot as plt import pandas.util.testing as tm n=100 gender = tm.choice(['Male', 'Female'], size=n) classroom = tm.choice(['A', 'B', 'C'], size=n) single = tm.choi...
https://api.github.com/repos/pandas-dev/pandas/pulls/7277
2014-05-29T13:54:32Z
2014-05-30T19:02:13Z
null
2014-06-13T16:34:47Z
BUG: TimeGrouper doesnt exclude the column specified by key
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 0aa30e536ef48..1bd15bc1ace02 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -65,3 +65,4 @@ There are no experimental changes in 0.14.1 Bug Fixes ~~~~~~~~~ +- Bug in ``TimeGrouper`` doesn't exclude column specified by ``key`` (:i...
This solves latter exclude column issue described in #7227.
https://api.github.com/repos/pandas-dev/pandas/pulls/7276
2014-05-29T13:10:18Z
2014-05-30T15:35:32Z
2014-05-30T15:35:32Z
2014-06-13T19:38:11Z
DOC/RLS: remove duplicate content in release.rst and move remaining to whatsnew
diff --git a/doc/source/release.rst b/doc/source/release.rst index fa541baa4e058..14b5741a81712 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -50,486 +50,24 @@ pandas 0.14.0 **Release date:** (May 31, 2014) -New features -~~~~~~~~~~~~ - -- Officially support Python 3.4 -- ``Index`` returns a ...
Related to discussion on mailing list https://mail.python.org/pipermail/pandas-dev/2014-May/000272.html So I gave it a try, moved all content of release.rst to the whatsnew file (main chunk were the bug fixes, and for the rest some api changes and enhancements that were not listed in whatsnew). All content that was in...
https://api.github.com/repos/pandas-dev/pandas/pulls/7275
2014-05-29T12:44:26Z
2014-05-30T10:38:22Z
2014-05-30T10:38:22Z
2014-06-26T09:08:58Z
ENH add sample #2419
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index a97e29add71be..273ada4bc867b 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -50,6 +50,8 @@ Known Issues Enhancements ~~~~~~~~~~~~ +- Add a sample method to NDFrame (:issue:`2419`) + .. _whatsnew_0141.performance: Performance...
fixes #2419 Hmmm `np.random.choice` not available on numpy < 1.7.
https://api.github.com/repos/pandas-dev/pandas/pulls/7274
2014-05-29T07:52:03Z
2015-01-18T21:36:35Z
null
2015-01-21T02:22:04Z
FIX resample with fill_method and how #2073
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index a97e29add71be..73d1167001063 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -66,6 +66,7 @@ Bug Fixes ~~~~~~~~~ - Bug in ``Index.min`` and ``max`` doesn't handle ``nan`` and ``NaT`` properly (:issue:`7261`) +- Bug in ``resample``...
fixes #2073
https://api.github.com/repos/pandas-dev/pandas/pulls/7273
2014-05-29T05:08:19Z
2014-06-04T16:46:44Z
null
2014-07-02T11:24:26Z
BF: reading stata files - unpack read value describing stored byte order
diff --git a/pandas/io/stata.py b/pandas/io/stata.py index 187a5f5d55533..b67a1be8d43d6 100644 --- a/pandas/io/stata.py +++ b/pandas/io/stata.py @@ -561,7 +561,7 @@ def _read_header(self): raise ValueError("Version of given Stata file is not 104, " "105, 108, 113 (Stat...
Otherwise comparison would always result in "low endian" . Seems to resolve all the gory stata files reading tests on sparc at least closes #5781
https://api.github.com/repos/pandas-dev/pandas/pulls/7272
2014-05-29T03:20:08Z
2014-05-29T11:10:05Z
2014-05-29T11:10:05Z
2014-07-01T00:07:43Z
ENH: check for __array__ instead of ndarray subclasses when creating an Index
diff --git a/pandas/core/common.py b/pandas/core/common.py index 00fa970c0f77a..afa376a14d4da 100644 --- a/pandas/core/common.py +++ b/pandas/core/common.py @@ -2038,7 +2038,8 @@ def intersection(*seqs): def _asarray_tuplesafe(values, dtype=None): from pandas.core.index import Index - if not isinstance(value...
This allows custom ndarray-like objects which aren't actual ndarrays to be smoothly cast to a pandas.Index: https://github.com/pydata/pandas/issues/5460#issuecomment-44474502
https://api.github.com/repos/pandas-dev/pandas/pulls/7270
2014-05-29T00:00:06Z
2014-05-29T18:03:43Z
2014-05-29T18:03:43Z
2014-09-22T14:42:25Z
added functionality to allow negative loc values to work with Index.insert
diff --git a/pandas/core/index.py b/pandas/core/index.py index 3cbefbf141491..02d6e983f5183 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -1774,7 +1774,8 @@ def delete(self, loc): def insert(self, loc, item): """ - Make new Index inserting new item at location + Make new ...
closes #7256
https://api.github.com/repos/pandas-dev/pandas/pulls/7268
2014-05-28T18:42:04Z
2014-05-30T23:32:19Z
null
2014-07-03T03:41:24Z
TST: disable stata tests on big-endian (GH5781) / fix datetime64[ns] comparison on big-endian (GH7265)
diff --git a/pandas/io/tests/test_stata.py b/pandas/io/tests/test_stata.py index 72bea8c458f9e..a83f8b3a9521f 100644 --- a/pandas/io/tests/test_stata.py +++ b/pandas/io/tests/test_stata.py @@ -19,9 +19,8 @@ from pandas.util.misc import is_little_endian from pandas import compat -def skip_if_not_little_endian(): - ...
related #5781 closes #7265
https://api.github.com/repos/pandas-dev/pandas/pulls/7266
2014-05-28T18:18:23Z
2014-05-28T18:56:10Z
2014-05-28T18:56:10Z
2014-06-13T03:05:58Z
DOC/TST: small change to 10min.rst / fixes for (GH7252, GH7263)
diff --git a/doc/source/10min.rst b/doc/source/10min.rst index cbd2f60ddbcd3..438f812039fa6 100644 --- a/doc/source/10min.rst +++ b/doc/source/10min.rst @@ -291,12 +291,10 @@ Using the :func:`~Series.isin` method for filtering: .. ipython:: python - df['E']=['one', 'one','two','three','four','three'] - df - ...
TST: fix stata issue with NaT (GH7252) closes #7252 closes #7263
https://api.github.com/repos/pandas-dev/pandas/pulls/7264
2014-05-28T15:50:21Z
2014-05-28T16:58:23Z
2014-05-28T16:58:23Z
2014-06-19T12:45:44Z
TST/BUG: Fix grouped_box_return_type
diff --git a/pandas/tests/test_graphics.py b/pandas/tests/test_graphics.py index de726e670d958..1b9691257347b 100644 --- a/pandas/tests/test_graphics.py +++ b/pandas/tests/test_graphics.py @@ -2272,7 +2272,7 @@ def test_grouped_box_return_type(self): columns2 = 'X B C D A G Y N Q O'.split() df2 = Data...
Closes #7254.
https://api.github.com/repos/pandas-dev/pandas/pulls/7260
2014-05-28T13:30:58Z
2014-05-28T14:57:34Z
2014-05-28T14:57:34Z
2014-07-16T09:07:45Z
DOC add v0.14.1.txt release notes stub
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt new file mode 100644 index 0000000000000..9677abe2e6d2c --- /dev/null +++ b/doc/source/v0.14.1.txt @@ -0,0 +1,84 @@ +.. _whatsnew_0141: + +v0.14.1 (??, 2014) +----------------------- + +This is a minor release from 0.14.1 and includes a small number of API ch...
Just a stub for 0.14.1 (?) release notes. Not in index yet. This look ok @jreback ? cc #6318
https://api.github.com/repos/pandas-dev/pandas/pulls/7255
2014-05-28T05:30:28Z
2014-05-28T14:52:10Z
null
2014-07-19T06:21:48Z
COMPAT: remove compat.scipy
diff --git a/pandas/compat/scipy.py b/pandas/compat/scipy.py index 06da8799d0c96..612304f27b5ea 100644 --- a/pandas/compat/scipy.py +++ b/pandas/compat/scipy.py @@ -54,16 +54,20 @@ def fastsort(a): Parameters ---------- - a : array_like - Input array. + a : 1-d array_like object (i.e np.array o...
https://api.github.com/repos/pandas-dev/pandas/pulls/7253
2014-05-28T03:15:40Z
2014-06-01T02:53:00Z
null
2014-07-05T16:34:05Z
TST/CLN: remove prints (esp of unicode), replacing with com.pprint_thing (GH7247)
diff --git a/pandas/io/tests/test_data.py b/pandas/io/tests/test_data.py index a413893309582..cf7c906a273b1 100644 --- a/pandas/io/tests/test_data.py +++ b/pandas/io/tests/test_data.py @@ -318,7 +318,6 @@ def tearDownClass(cls): @network def test_get_options_data_warning(self): with assert_produces_w...
closes #7247
https://api.github.com/repos/pandas-dev/pandas/pulls/7248
2014-05-27T16:26:28Z
2014-05-27T17:49:27Z
2014-05-27T17:49:27Z
2014-06-26T12:58:15Z
WRN: let + * and - pass thru on boolean with a warning
diff --git a/doc/source/release.rst b/doc/source/release.rst index ed22348e45c9f..fa541baa4e058 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -156,8 +156,8 @@ API Changes - ``to_excel`` now converts ``np.inf`` into a string representation, customizable by the ``inf_rep`` keyword argument (Exce...
closes #7210
https://api.github.com/repos/pandas-dev/pandas/pulls/7245
2014-05-27T14:08:54Z
2014-05-27T19:50:10Z
2014-05-27T19:50:10Z
2014-06-17T04:57:02Z
BUG: string methods on empty series (GH7241)
diff --git a/doc/source/basics.rst b/doc/source/basics.rst index 02df98313071e..dd1ea5678698d 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -1165,6 +1165,9 @@ Thus, a Series of messy strings can be "converted" into a like-indexed Series or DataFrame of cleaned-up or more useful strings, without ne...
closes #7241
https://api.github.com/repos/pandas-dev/pandas/pulls/7242
2014-05-27T07:42:41Z
2014-06-04T03:33:43Z
null
2014-06-16T22:44:39Z
DOC: GH3850, add .isin to 10min.rst
diff --git a/doc/source/10min.rst b/doc/source/10min.rst index 4bca2f4a9d4c8..cbd2f60ddbcd3 100644 --- a/doc/source/10min.rst +++ b/doc/source/10min.rst @@ -287,6 +287,17 @@ A ``where`` operation for getting. df[df > 0] +Using the :func:`~Series.isin` method for filtering: + +.. ipython:: python + + df['E']=[...
closes #3850. Updates 10min.rst to demonstrate isin
https://api.github.com/repos/pandas-dev/pandas/pulls/7239
2014-05-26T20:20:26Z
2014-05-28T13:30:23Z
2014-05-28T13:30:23Z
2014-06-14T12:09:50Z
DOC: clean-up docstrings of option functions
diff --git a/doc/source/api.rst b/doc/source/api.rst index 2b12da9a7f92f..c037dfa8d7acf 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -489,7 +489,6 @@ Serialization / IO / Conversion Series.to_frame Series.to_hdf Series.to_sql - Series.to_gbq Series.to_msgpack Series.to_json Seri...
Some clean-up after my last additions to api.rst to get rid off all warnings: - some clean up of api.rst itself - some clean-up of the docstrings of the option functions so they render nicely with sphinx
https://api.github.com/repos/pandas-dev/pandas/pulls/7236
2014-05-26T14:33:11Z
2014-05-26T20:22:27Z
2014-05-26T20:22:26Z
2014-06-12T21:41:35Z
BUG: grouped hist raises AttributeError with single group
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 3159bbfc34e7d..a92cb54b9077d 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -280,3 +280,5 @@ Bug Fixes - Bug in ``pandas.core.strings.str_contains`` does not properly match in a case insensitive fashion when ``regex=False`` and ``c...
Includes 3 minor fixes for `hist`. - `DataFrame.hist` raises `AttributeError` when the target column specifiedwith `by` kw only contains a single value. ``` import pandas as pd import numpy as np import matplotlib.pyplot as plt import pandas.util.testing as tm n=100 gender = tm.choice(['Male', 'Female'], size=n) clas...
https://api.github.com/repos/pandas-dev/pandas/pulls/7234
2014-05-24T22:12:03Z
2014-07-07T19:27:56Z
2014-07-07T19:27:56Z
2014-07-09T12:37:50Z
BUG: multi-index output formatting is buggy (GH7174)
diff --git a/pandas/core/format.py b/pandas/core/format.py index 83be9eb57b79c..c2f439877ca00 100644 --- a/pandas/core/format.py +++ b/pandas/core/format.py @@ -780,6 +780,7 @@ def write_result(self, buf): def _write_header(self, indent): truncate_h = self.fmt.truncate_h + row_levels = self.frame...
Closes #7174 Adjusts the truncation in the notebook for multiindex dfs. Both rows and columns are affected. http://nbviewer.ipython.org/gist/bjonen/492fea9559fd73edf579
https://api.github.com/repos/pandas-dev/pandas/pulls/7232
2014-05-24T20:17:51Z
2014-05-25T16:06:45Z
2014-05-25T16:06:44Z
2014-06-27T11:31:39Z
BUG: bar plot can now handle bottom and left kw properly
diff --git a/doc/source/v0.14.1.txt b/doc/source/v0.14.1.txt index 0aa30e536ef48..b8201556a86f8 100644 --- a/doc/source/v0.14.1.txt +++ b/doc/source/v0.14.1.txt @@ -65,3 +65,4 @@ There are no experimental changes in 0.14.1 Bug Fixes ~~~~~~~~~ +- Bug in ``DataFrame`` and ``Series`` bar and barh plot raises ``TypeErr...
Actually not a bug, but allows `bar` and `barh` plot to accept `bottom` and `left` kw respectively to specify the starting point. Currently, passing `bottom` or `left` keyword results in `TypeError` ``` import pandas as pd import numpy as np df = pd.DataFrame(np.random.randn(5, 5)) df.plot(kind='bar', bottom=1, ax=ax...
https://api.github.com/repos/pandas-dev/pandas/pulls/7226
2014-05-24T14:40:20Z
2014-05-30T18:12:20Z
null
2014-06-13T03:13:25Z
BUG: boxplot returns incorrect dict
diff --git a/pandas/tests/test_graphics.py b/pandas/tests/test_graphics.py index 39067096cfd25..de726e670d958 100644 --- a/pandas/tests/test_graphics.py +++ b/pandas/tests/test_graphics.py @@ -10,7 +10,8 @@ from datetime import datetime, date from pandas import Series, DataFrame, MultiIndex, PeriodIndex, date_range...
#7096 returns incorrect `dict` when number of columns and subplots are different. ``` import pandas as pd import numpy as np import matplotlib.pyplot as plt import pandas.util.testing as tm n=100 gender = tm.choice(['Male', 'Female'], size=n) classroom = tm.choice(['A', 'B', 'C'], size=n) df = pd.DataFrame({'gender...
https://api.github.com/repos/pandas-dev/pandas/pulls/7225
2014-05-24T13:45:55Z
2014-05-27T17:50:52Z
2014-05-27T17:50:52Z
2014-06-13T14:48:24Z
TST: tests for reindex_like consistency (GH7179)
diff --git a/pandas/tests/test_series.py b/pandas/tests/test_series.py index c3c7ae9bacbcd..b9db6e8adb634 100644 --- a/pandas/tests/test_series.py +++ b/pandas/tests/test_series.py @@ -5187,6 +5187,18 @@ def test_reindex_like(self): assert_series_equal(self.ts.reindex(other.index), ...
closes #7179
https://api.github.com/repos/pandas-dev/pandas/pulls/7221
2014-05-23T16:23:41Z
2014-05-23T16:43:09Z
2014-05-23T16:43:09Z
2014-07-16T09:07:25Z
BUG: bug in setitem with multi-index and a 0-dim ndarray (GH7218)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 03867e3bf6543..e0ca9854262f1 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -522,7 +522,7 @@ Bug Fixes - Bug in ``query``/``eval`` where global constants were not looked up correctly (:issue:`7178`) - Bug in recognizing out-of-...
closes #7218
https://api.github.com/repos/pandas-dev/pandas/pulls/7219
2014-05-23T13:52:11Z
2014-05-23T14:18:45Z
2014-05-23T14:18:45Z
2014-06-25T08:58:13Z
WIP: categoricals as an internal CategoricalBlock GH5313
diff --git a/.gitignore b/.gitignore index 92a7e4d3edbf6..d1567afef699b 100644 --- a/.gitignore +++ b/.gitignore @@ -88,3 +88,5 @@ doc/source/vbench doc/source/vbench.rst doc/source/index.rst doc/build/html/index.html +# Windows specific leftover: +doc/tmp.sv diff --git a/doc/source/api.rst b/doc/source/api.rst inde...
This PR creates a `CategoricalBlock` as a first class internal object, on par with blocks like `Datetime,Timedelta,Object,Numeric` etc. closes #5313 closes #5314 closes #3943 TODOS - [x] test with `select_dtypes` #7434, https://github.com/jreback/pandas/commit/a43c6c041c7870c63992bc15b427adc35f7ab5d8 **Code Changes...
https://api.github.com/repos/pandas-dev/pandas/pulls/7217
2014-05-23T13:13:36Z
2014-07-14T21:42:11Z
2014-07-14T21:42:11Z
2014-09-19T14:42:05Z
DOC/CLN for GH7213/GH7206
diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index d816bc171c300..8f3d2fe8eb079 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -413,7 +413,7 @@ regularity will result in a ``DatetimeIndex`` (but frequency is lost): Time/Date Components ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Th...
DOC: doc fixups for (GH7213) CLN: cleanup related to (GH7206) don't create the disabled properties at all for Series related #7206 related #7213
https://api.github.com/repos/pandas-dev/pandas/pulls/7216
2014-05-23T12:46:10Z
2014-05-23T13:52:50Z
2014-05-23T13:52:50Z
2014-06-26T19:53:59Z
DOC: fix datetime-like Series ops in docs + some extra api docs
diff --git a/doc/source/api.rst b/doc/source/api.rst index c6e2ae74a27cb..2b12da9a7f92f 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -127,6 +127,7 @@ Data manipulations :toctree: generated/ melt + pivot pivot_table crosstab cut @@ -134,6 +135,7 @@ Data manipulations merge ...
Closes #7213. \+ added some entries in api.rst
https://api.github.com/repos/pandas-dev/pandas/pulls/7215
2014-05-23T12:21:43Z
2014-05-23T12:48:21Z
2014-05-23T12:48:21Z
2014-06-27T12:23:56Z
TST/DOC: Test for and document incompatibility with openpyxl 2.0.0 and later
diff --git a/README.md b/README.md index 6f50c1e2ea10e..79a84440d6a5c 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,8 @@ pip install pandas - [xlrd/xlwt](http://www.python-excel.org/) - Excel reading (xlrd) and writing (xlwt) - [openpyxl](http://packages.python.org/openpyxl/) - - openpyxl versio...
Let users down easy if v0.14.0 remains incompatible with openpyxl 2.0.0 and later closes #7169 .
https://api.github.com/repos/pandas-dev/pandas/pulls/7214
2014-05-23T02:12:43Z
2014-05-24T13:05:08Z
2014-05-24T13:05:08Z
2014-06-12T23:47:30Z