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
BUG: Fix __truediv__ numexpr error
diff --git a/RELEASE.rst b/RELEASE.rst index 57cb53c1096f6..ebd88091050f1 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -250,6 +250,8 @@ pandas 0.11.1 not converting dtypes (GH3911_) - Fixed a bug where ``DataFrame.replace`` with a compiled regular expression in the ``to_replace`` argument wasn't working (...
Fixes a number of items relating to accelerated arithmetic in frame. --- `__truediv__` had been set up to use numexpr, but this happened by passingthe division operator as the string. numexpr's evaluate only checked 2 frames up, which meant that it picked up the division setting from`frame.py` and would do floor/inte...
https://api.github.com/repos/pandas-dev/pandas/pulls/3764
2013-06-05T22:40:00Z
2013-06-18T13:01:18Z
2013-06-18T13:01:18Z
2014-06-13T05:42:35Z
ENH: support HDFStore in Python3 (via PyTables 3.0.0)
diff --git a/README.rst b/README.rst index daea702476ebc..85868176722bd 100644 --- a/README.rst +++ b/README.rst @@ -85,7 +85,6 @@ Optional dependencies - `Cython <http://www.cython.org>`__: Only necessary to build development version. Version 0.17.1 or higher. - `SciPy <http://www.scipy.org>`__: miscellaneous st...
closes #3750 recently released PyTables 3.0.0 (and numexpr 2.1), which now support python3 were completely broken These changed all data to be stored as bytes (with to/from encoding/decoding) This PR supports an encoding argument (if you really want to encode your data), and provides transparent access for python3 (...
https://api.github.com/repos/pandas-dev/pandas/pulls/3762
2013-06-05T18:21:30Z
2013-06-06T00:14:00Z
2013-06-06T00:14:00Z
2014-07-05T15:12:01Z
DataFrame.corr() now computing correlations only once
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 9c0a2843370f4..1fd3e517e3089 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -4750,15 +4750,16 @@ def corr(self, method='pearson', min_periods=None): mask = np.isfinite(mat) for i, ac in enumerate(mat): ...
DataFrame.corr() for 'spearman' and 'kendall' was computing some correlations twice.
https://api.github.com/repos/pandas-dev/pandas/pulls/3760
2013-06-05T13:05:20Z
2013-06-09T22:05:06Z
null
2013-06-09T22:05:06Z
BUG: (GH3611) revisited; read_excel not passing thru options to ExcelFile.parse
diff --git a/RELEASE.rst b/RELEASE.rst index b5dd3eef68dea..12d2389a8a59b 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -120,6 +120,8 @@ pandas 0.11.1 - Implement ``__nonzero__`` for ``NDFrame`` objects (GH3691_, GH3696_) - ``as_matrix`` with mixed signed and unsigned dtypes will result in 2 x the lcd of the unsi...
recloses #3611 API: add string and numeric versions of na_values when parsing
https://api.github.com/repos/pandas-dev/pandas/pulls/3758
2013-06-05T11:56:43Z
2013-06-05T14:02:43Z
2013-06-05T14:02:43Z
2014-07-16T08:11:38Z
DOC: minor issue with the description of the names attribute of multiindexes
diff --git a/doc/source/indexing.rst b/doc/source/indexing.rst index 1c4f5db9a45d0..c11e190a2eb82 100644 --- a/doc/source/indexing.rst +++ b/doc/source/indexing.rst @@ -953,12 +953,12 @@ DataFrame to construct a MultiIndex automatically: df All of the ``MultiIndex`` constructors accept a ``names`` argument which...
https://api.github.com/repos/pandas-dev/pandas/pulls/3755
2013-06-04T20:12:36Z
2013-06-04T20:28:55Z
null
2013-12-04T00:56:44Z
DOC: document bs4/lxml/html5lib issues
diff --git a/README.rst b/README.rst index a74a155cf8a27..daea702476ebc 100644 --- a/README.rst +++ b/README.rst @@ -93,18 +93,49 @@ Optional dependencies - openpyxl version 1.6.1 or higher, for writing .xlsx files - xlrd >= 0.9.0 - Needed for Excel I/O - - Both `html5lib <https://github.com/html5lib...
to summarize this mess of deps and check my thoughts here ### if a user insists on using `lxml` (either with or without `bs4`) - warning about its inability to deal with the modern web - warning saying that the user should install `html5lib` and `bs4` so that a page will parse even if `lxml` barfs - test coverage for f...
https://api.github.com/repos/pandas-dev/pandas/pulls/3751
2013-06-03T22:24:22Z
2013-06-04T20:02:50Z
2013-06-04T20:02:50Z
2014-07-16T08:11:35Z
BUG: (GH3748) Incorrectly read a HDFStore multi-index Frame witha column specification
diff --git a/RELEASE.rst b/RELEASE.rst index bbfc9fb948ef4..2b90edaa327b0 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -81,6 +81,8 @@ pandas 0.11.1 - When removing an object from a ``HDFStore``, ``remove(key)`` raises ``KeyError`` if the key is not a valid store object. + - In an ``HDFStore``, raise a ``Typ...
closes #3748 API: raise a `TypeError` on passing `where` or `columns` to select with a Storer e.g. these are invalid parameters at this time
https://api.github.com/repos/pandas-dev/pandas/pulls/3749
2013-06-03T19:08:40Z
2013-06-03T21:06:35Z
2013-06-03T21:06:34Z
2014-07-16T08:11:33Z
ENH: Experimental CustomBusinessDay DateOffset class. fixes #2301
diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index f11bf60549d93..e2e4e81f13199 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -382,6 +382,7 @@ frequency increment. Specific offset logic like "month", "business day", or DateOffset, "Generic offset class, defaults ...
I took a stab at issue #2301 using the busdaycalendar functionality in numpy 1.7. ### Caveats There are a few issues with this: - It requires Numpy 1.7 (I've only tested it on numpy 1.7.1). - The timezone handling in nump 1.7 is broken (according to [this discussion](http://numpy-discussion.10968.n7.nabble.com/timezon...
https://api.github.com/repos/pandas-dev/pandas/pulls/3744
2013-06-03T14:01:05Z
2013-06-21T12:39:20Z
2013-06-21T12:39:20Z
2014-07-02T10:29:35Z
BUG: (GH3740) Groupby transform with item-by-item not upcasting correctly
diff --git a/RELEASE.rst b/RELEASE.rst index c59a53c7f6c69..bbfc9fb948ef4 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -196,6 +196,7 @@ pandas 0.11.1 - ``DataFrame.to_html`` and ``DataFrame.to_latex`` now accept a path for their first argument (GH3702_) - Fix file tokenization error with \r delimiter and qu...
closes #3740
https://api.github.com/repos/pandas-dev/pandas/pulls/3743
2013-06-03T13:24:35Z
2013-06-03T17:09:29Z
2013-06-03T17:09:29Z
2014-07-16T08:11:29Z
TST/BUG: fix bs4 tests that were getting erroneously run when lxml is installed but not bs4
diff --git a/RELEASE.rst b/RELEASE.rst index 2b90edaa327b0..b5dd3eef68dea 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -200,6 +200,7 @@ pandas 0.11.1 - Fix file tokenization error with \r delimiter and quoted fields (GH3453_) - Groupby transform with item-by-item not upcasting correctly (GH3740_) - Incorrectl...
https://api.github.com/repos/pandas-dev/pandas/pulls/3741
2013-06-03T06:13:06Z
2013-06-04T16:58:59Z
2013-06-04T16:58:59Z
2014-06-12T18:25:57Z
Make div use truediv instead of div
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 9c0a2843370f4..f13fb6c26eecd 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -839,7 +839,12 @@ def __contains__(self, key): add = _arith_method(operator.add, 'add', '+') mul = _arith_method(operator.mul, 'multiply', '*') sub =...
This changes the `div()` method in pandas on Python 2.x to always do `truediv` rather than integer division. Currently, pandas doesn't respect `from __future__ import division` (it's defined in a file that doesn't start with the import, so it always does integer division). `__div__`, `__rdiv__`, and `__idiv__` remain ...
https://api.github.com/repos/pandas-dev/pandas/pulls/3739
2013-06-02T17:17:07Z
2013-06-02T19:28:32Z
null
2014-07-03T04:46:53Z
TST: Fix assert_almost_equal error message
diff --git a/pandas/util/testing.py b/pandas/util/testing.py index 823d2c81bb72c..dd86862a2d551 100644 --- a/pandas/util/testing.py +++ b/pandas/util/testing.py @@ -141,7 +141,7 @@ def assert_almost_equal(a, b, check_less_precise = False): assert_almost_equal(a[i], b[i], check_less_precise) re...
Most tests (in pandas' test suite and in general) are of form `assert_almost_equal(result, expected)`. Verbose error message was treating its first argument as expected, this is now fixed. Previous message was: ``` python err_msg = lambda a, b: 'expected %.5f but got %.5f' % (a, b) ``` But a, the first argument, is...
https://api.github.com/repos/pandas-dev/pandas/pulls/3737
2013-06-02T09:15:07Z
2013-06-03T17:11:19Z
2013-06-03T17:11:19Z
2014-07-16T08:11:22Z
PERF: speed up where operations when splitting blocks (GH3733)
diff --git a/RELEASE.rst b/RELEASE.rst index 35741f7eb008f..4573b45ccaf16 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -76,6 +76,7 @@ pandas 0.11.1 GH3572_). This happens before any drawing takes place which elimnates any spurious plots from showing up. - Added Faq section on repr display options, to help...
close #3733
https://api.github.com/repos/pandas-dev/pandas/pulls/3736
2013-06-01T20:37:47Z
2013-06-02T11:58:40Z
2013-06-02T11:58:40Z
2014-07-16T08:11:20Z
BUG/BLD: pytables version checking was incorrect
diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py index 046263a9cb63c..0a86d72a05f16 100644 --- a/pandas/io/pytables.py +++ b/pandas/io/pytables.py @@ -109,15 +109,12 @@ def _tables(): global _table_supports_index if _table_mod is None: import tables + from distutils.version import Lo...
https://api.github.com/repos/pandas-dev/pandas/pulls/3735
2013-06-01T20:15:39Z
2013-06-01T20:38:56Z
2013-06-01T20:38:56Z
2014-07-16T08:11:19Z
BLD: test_perf.py, add --base-pickle --target-pickle options to test_perf
diff --git a/vb_suite/test_perf.py b/vb_suite/test_perf.py index 72b441d79be84..b0d029de7371a 100755 --- a/vb_suite/test_perf.py +++ b/vb_suite/test_perf.py @@ -37,10 +37,18 @@ import random import numpy as np +import pandas as pd from pandas import DataFrame, Series +try: + import git # gitpython +except Exc...
Until now test_perf either generated a single commit report for HEAD, or fell back to vbench to compare two commits. with this change, can now compare results between saved results of test_perf -H invocations. Flow: - Use build_cache (cdev from #3156) to jump to desired commit using build_cache - checkout current vb_s...
https://api.github.com/repos/pandas-dev/pandas/pulls/3734
2013-06-01T19:49:33Z
2013-06-01T19:50:22Z
2013-06-01T19:50:22Z
2014-06-24T15:20:16Z
DOC: fix read_html attribute reading example
diff --git a/doc/source/io.rst b/doc/source/io.rst index 204dd2c984ba7..0a1f0e74255bb 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -1021,9 +1021,9 @@ Specify an HTML attribute .. ipython:: python - dfs = read_html(url) - len(dfs) - dfs[0] + dfs1 = read_html(url, attrs={'id': 'table'}) + dfs2...
https://api.github.com/repos/pandas-dev/pandas/pulls/3732
2013-05-31T22:04:01Z
2013-05-31T22:10:47Z
2013-05-31T22:10:47Z
2014-07-16T08:11:14Z
API: raise TypeError on most datetime64 reduction ops
diff --git a/RELEASE.rst b/RELEASE.rst index 3a347246be8dd..8da3b4760c303 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -97,6 +97,12 @@ pandas 0.11.1 in your calls. - Do not allow astypes on ``datetime64[ns]`` except to ``object``, and ``timedelta64[ns]`` to ``object/int`` (GH3425_) + - The behavior of ``...
closes #3726.
https://api.github.com/repos/pandas-dev/pandas/pulls/3731
2013-05-31T20:10:10Z
2013-06-06T02:10:51Z
2013-06-06T02:10:51Z
2014-06-22T11:11:14Z
ENH/CLN: give all AssertionErrors and nose.SkipTest raises an informative message
diff --git a/pandas/core/panel.py b/pandas/core/panel.py index 34b65f169b904..697344639c41b 100644 --- a/pandas/core/panel.py +++ b/pandas/core/panel.py @@ -528,9 +528,14 @@ def get_value(self, *args): ------- value : scalar value """ + nargs = len(args) + nreq = self._AXIS_LEN ...
continuation of #3519 because of a branch rename. ### UPDATE: The exception parsing script has been moved to [a Gist](https://gist.github.com/cpcloud/6745173) This PR partially addresses #3024. - all `AssertionError` exceptions now have an informative error message in them - some `AssertionErrors` have been converted...
https://api.github.com/repos/pandas-dev/pandas/pulls/3730
2013-05-31T16:42:37Z
2013-09-28T20:44:42Z
2013-09-28T20:44:42Z
2014-06-26T21:36:32Z
DOC/BLD: squash as many doc-build warnings as possible
diff --git a/doc/source/basics.rst b/doc/source/basics.rst index f428579b78570..4100c4404ece6 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -1369,7 +1369,7 @@ For instance: .. ipython:: python :suppress: - reset_printoptions() + reset_option('^display\.') The ``set_printoptions`` fun...
https://api.github.com/repos/pandas-dev/pandas/pulls/3725
2013-05-31T01:00:22Z
2013-05-31T13:21:02Z
2013-05-31T13:21:02Z
2014-07-12T14:11:36Z
DOC: older version of bs4 for 64bit as well
diff --git a/doc/source/install.rst b/doc/source/install.rst index 407746e3cb000..2a0f67fe8d9e6 100644 --- a/doc/source/install.rst +++ b/doc/source/install.rst @@ -75,14 +75,14 @@ Dependencies Recommended Dependencies ~~~~~~~~~~~~~~~~~~~~~~~~ - * `numexpr <http://code.google.com/p/numexpr/>`__: for accelerating c...
https://api.github.com/repos/pandas-dev/pandas/pulls/3724
2013-05-31T00:08:29Z
2013-05-31T00:10:59Z
2013-05-31T00:10:59Z
2014-07-16T08:10:52Z
DOC/BLD: fix annoying sphinx bugs
diff --git a/pandas/core/common.py b/pandas/core/common.py index 994a57247e50b..69f38bf0c7c61 100644 --- a/pandas/core/common.py +++ b/pandas/core/common.py @@ -1348,8 +1348,8 @@ def iterpairs(seq): ------- iterator returning overlapping pairs of elements - Example - ------- + Examples + -------...
closes #3721. cc @jreback
https://api.github.com/repos/pandas-dev/pandas/pulls/3722
2013-05-30T23:13:59Z
2013-05-30T23:56:42Z
2013-05-30T23:56:42Z
2014-07-17T00:18:56Z
DOC: clean up io docs and fix up links
diff --git a/doc/source/api.rst b/doc/source/api.rst index 2e59bf6533205..fea8b95bb2bcf 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -38,9 +38,8 @@ Pickling load save -File IO -~~~~~~~ - +Flat File IO +^^^^^^^^^^^^ .. currentmodule:: pandas.io.parsers .. autosummary:: @@ -62,9 +61,13 @@ Fil...
closes #3718.
https://api.github.com/repos/pandas-dev/pandas/pulls/3720
2013-05-30T16:09:36Z
2013-05-30T16:41:20Z
2013-05-30T16:41:20Z
2014-07-16T08:10:50Z
BLD: switch MAJOR and MICRO
diff --git a/setup.py b/setup.py index bbad3e87a3fa0..2e7fd778578fd 100755 --- a/setup.py +++ b/setup.py @@ -183,9 +183,9 @@ def build_extensions(self): 'Topic :: Scientific/Engineering', ] -MAJOR = 1 +MAJOR = 0 MINOR = 11 -MICRO = 0 +MICRO = 1 ISRELEASED = False VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) ...
cc @y-p
https://api.github.com/repos/pandas-dev/pandas/pulls/3716
2013-05-30T14:47:20Z
2013-05-30T14:56:07Z
2013-05-30T14:56:07Z
2014-07-16T08:10:48Z
BUG: restore 10.1 expand_repr behaviour, only for < max_cols, if wider then term GH3706
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 27aa68ee39d8e..9e276e01dd723 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -703,10 +703,13 @@ def __unicode__(self): self.to_string(buf=buf) else: width, _ = fmt.get_console_size() - max_rows =...
#3706
https://api.github.com/repos/pandas-dev/pandas/pulls/3713
2013-05-30T05:09:21Z
2013-05-30T05:10:56Z
2013-05-30T05:10:56Z
2014-07-16T08:10:45Z
API: deprecate unused DataFrame.replace arguments
diff --git a/RELEASE.rst b/RELEASE.rst index 1d63a7f53954d..e611b330b08f0 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -110,6 +110,8 @@ pandas 0.11.1 - added ``pandas.io.api`` for i/o imports - removed ``Excel`` support to ``pandas.io.excel`` - added top-level ``pd.read_sql`` and ``to_sql`` DataFrame me...
@jreback i forgot to do this as per our conversation
https://api.github.com/repos/pandas-dev/pandas/pulls/3712
2013-05-30T00:11:09Z
2013-05-30T16:41:40Z
2013-05-30T16:41:40Z
2014-07-16T08:10:43Z
Excel output in non-ascii encodings
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 68a6c9e261c97..f43adedb61a04 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -1470,7 +1470,7 @@ def to_csv(self, path_or_buf, sep=",", na_rep='', float_format=None, def to_excel(self, excel_writer, sheet_name='sheet1', na_rep='', ...
First, I would like to thank the developers for this excellent work. My patch is about the possibility of specify the workbook encoding when making output to excel xls files. By default, pandas hasn't it, so say-so non ascii language speakers weren't able to save files with _special_ characters, receiving an error lik...
https://api.github.com/repos/pandas-dev/pandas/pulls/3710
2013-05-29T23:06:10Z
2013-09-30T10:27:38Z
null
2014-06-24T12:36:06Z
improve error message when xlrd import fails
diff --git a/pandas/io/parsers.py b/pandas/io/parsers.py index 68db97b7a3c53..0dde47e6065e4 100644 --- a/pandas/io/parsers.py +++ b/pandas/io/parsers.py @@ -2000,7 +2000,7 @@ def __init__(self, path_or_buf, kind=None, **kwds): import xlrd # throw an ImportError if we need to ver = tuple(map(int,xlrd._...
https://api.github.com/repos/pandas-dev/pandas/pulls/3709
2013-05-29T23:02:12Z
2013-05-29T23:47:53Z
2013-05-29T23:47:53Z
2013-06-10T19:20:35Z
BUG: allow DataFrame.from_records to accept empty recarrays
diff --git a/RELEASE.rst b/RELEASE.rst index 76aac0d73466c..38a8b42fcde6f 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -173,6 +173,7 @@ pandas 0.11.1 - ``read_html()`` now only allows a single backend: ``html5lib`` (GH3616_) - ``convert_objects`` with ``convert_dates='coerce'`` was parsing some single-letter str...
closes #3682.
https://api.github.com/repos/pandas-dev/pandas/pulls/3708
2013-05-29T14:23:51Z
2013-05-30T00:46:35Z
2013-05-30T00:46:35Z
2014-07-06T13:17:47Z
DOC: document read_html and to_html
diff --git a/doc/source/io.rst b/doc/source/io.rst index 92747f9906da2..5bf3075f2688e 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -938,8 +938,106 @@ Reading HTML Content .. versionadded:: 0.11.1 -The toplevel :func:`~pandas.io.parsers.read_html` function can accept an HTML +The toplevel :func:`~panda...
https://api.github.com/repos/pandas-dev/pandas/pulls/3704
2013-05-28T21:56:08Z
2013-05-30T16:36:50Z
2013-05-30T16:36:50Z
2014-07-16T08:10:33Z
ENH: allow to_html and to_latex to take a path for their first argument
diff --git a/RELEASE.rst b/RELEASE.rst index 5293b858b72a3..71d8054283b57 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -179,6 +179,8 @@ pandas 0.11.1 into today's date - ``DataFrame.from_records`` did not accept empty recarrays (GH3682_) - ``DataFrame.to_csv`` will succeed with the deprecated option ``nanR...
https://api.github.com/repos/pandas-dev/pandas/pulls/3702
2013-05-28T17:33:25Z
2013-05-30T16:34:48Z
2013-05-30T16:34:48Z
2014-06-20T04:17:09Z
BUG: DataFrame.to_csv fails silently if nanRep not None
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 68a6c9e261c97..cf57c869f4b05 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -1455,18 +1455,16 @@ def to_csv(self, path_or_buf, sep=",", na_rep='', float_format=None, FutureWarning) na_rep = nanRep -...
The nanRep argument to DataFrame.to_csv() is deprecated and na_rep should be used instead. .to_csv should succeed with a warning if nanRep is specified. Before this fix, to_csv threw a warning but did not save the file.
https://api.github.com/repos/pandas-dev/pandas/pulls/3701
2013-05-28T05:14:38Z
2013-05-30T01:10:17Z
null
2014-07-16T08:10:29Z
DOC: use na_rep not nanRep in .to_csv()
diff --git a/doc/source/io.rst b/doc/source/io.rst index e192eea0d2b12..a1ba88c0d798b 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -871,7 +871,7 @@ allows storing the contents of the object as a comma-separated-values file. The function takes a number of arguments. Only the first is required. - ``pat...
nanRep works but is deprecated and emits a FutureWarning.
https://api.github.com/repos/pandas-dev/pandas/pulls/3700
2013-05-28T05:03:16Z
2013-05-30T00:53:56Z
2013-05-30T00:53:56Z
2015-08-15T22:13:32Z
ENH/API: implement __nonzero__ for NDFrame
diff --git a/RELEASE.rst b/RELEASE.rst index e611b330b08f0..9283bada2d720 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -112,6 +112,7 @@ pandas 0.11.1 - added top-level ``pd.read_sql`` and ``to_sql`` DataFrame methods - the ``method`` and ``axis`` arguments of ``DataFrame.replace()`` are deprecated + - Im...
closes #3691.
https://api.github.com/repos/pandas-dev/pandas/pulls/3696
2013-05-27T01:42:23Z
2013-05-30T16:45:00Z
2013-05-30T16:45:00Z
2014-06-25T21:08:44Z
Test to verify/fix behavior in #3503
diff --git a/pandas/tests/test_frame.py b/pandas/tests/test_frame.py index fddbbf93552b3..207d08e795e37 100644 --- a/pandas/tests/test_frame.py +++ b/pandas/tests/test_frame.py @@ -23,6 +23,7 @@ from pandas.core.api import (DataFrame, Index, Series, notnull, isnull, MultiIndex, DatetimeIn...
Was not able to reproduce the issue. #3503
https://api.github.com/repos/pandas-dev/pandas/pulls/3694
2013-05-25T23:36:33Z
2013-06-02T20:38:25Z
2013-06-02T20:38:25Z
2014-07-16T08:10:25Z
CLN: added io.api for i/o importing functions
diff --git a/RELEASE.rst b/RELEASE.rst index 5293b858b72a3..5b512814d0fec 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -35,6 +35,7 @@ pandas 0.11.1 GH3606_) - Support for reading Amazon S3 files. (GH3504_) - Added module for reading and writing Stata files: pandas.io.stata (GH1512_) + includes ``to_stata...
closes most of #3411 (all except the deprecation of `from_csv`) - moved excel functionaility out of io.parsers to io.excel added read_excel top-level function aliases from pandas.io.excel - added read_stata top-level function, to_stata DataFrame method aliases from pandas.io.stata removed read_dta (replace by r...
https://api.github.com/repos/pandas-dev/pandas/pulls/3693
2013-05-25T00:40:50Z
2013-05-30T16:32:27Z
2013-05-30T16:32:27Z
2014-07-16T08:10:24Z
BUG: allow insertion/deletion of columns in non-unique column DataFrames
diff --git a/RELEASE.rst b/RELEASE.rst index 38a8b42fcde6f..710e3cbbb2b81 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -102,6 +102,8 @@ pandas 0.11.1 GH3675_, GH3676_). - Deprecated display.height, display.width is now only a formatting option does not control triggering of summary, similar to < 0.11.0. +...
closes #3679, #3687 Here's example of various operations ``` In [3]: df = DataFrame([[1,1,1,5],[1,1,2,5],[2,1,3,5]], columns=['foo','bar','foo','hello']) In [27]: df.columns.is_unique Out[27]: False In [4]: # insert In [5]: df['string'] = 'bah' In [6]: df Out[6]: foo bar foo hello string 0 ...
https://api.github.com/repos/pandas-dev/pandas/pulls/3683
2013-05-22T14:44:07Z
2013-05-30T00:48:23Z
2013-05-30T00:48:23Z
2014-06-12T20:29:27Z
EHN: Add filter methods to SeriesGroupBy, DataFrameGroupBy GH919
diff --git a/RELEASE.rst b/RELEASE.rst index b5dd3eef68dea..1e7880016cdee 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -48,6 +48,8 @@ pandas 0.11.1 - Add iterator to ``Series.str`` (GH3638_) - ``pd.set_option()`` now allows N option, value pairs (GH3667_). - Added keyword parameters for different types of sca...
closes #919 I have been using Wes' workaround (see #919) for filtering groups. Finally, for brevity's sake, I wrote a real filter method. In the one simple case I checked, it performs faster than the workaround. On a small (~10) Series: ``` In [7]: %timeit grouped.filter(lambda x: x.mean() > 10) # my method 1000 lo...
https://api.github.com/repos/pandas-dev/pandas/pulls/3680
2013-05-22T02:43:16Z
2013-06-06T21:06:26Z
2013-06-06T21:06:26Z
2014-06-15T15:23:56Z
ENH: enhance set_option syntax
diff --git a/RELEASE.rst b/RELEASE.rst index 9283bada2d720..35741f7eb008f 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -46,6 +46,9 @@ pandas 0.11.1 Note: The default value will change in 0.12 to make the default *to* write and read multi-index columns in the new format. (GH3571_, GH1651_, GH3141_) - Add i...
closes #3667.
https://api.github.com/repos/pandas-dev/pandas/pulls/3677
2013-05-21T22:33:21Z
2013-05-30T18:12:03Z
2013-05-30T18:12:03Z
2014-06-14T19:08:56Z
API: deprecate DataFrame.interpolate
diff --git a/RELEASE.rst b/RELEASE.rst index efc0f912060b7..1377bac856a96 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -96,6 +96,9 @@ pandas 0.11.1 - The ``raise_on_error`` option to plotting methods is obviated by GH3572_, so it is removed. Plots now always raise when data cannot be plotted or the object...
closes #3582.
https://api.github.com/repos/pandas-dev/pandas/pulls/3675
2013-05-21T20:33:17Z
2013-05-22T13:45:59Z
2013-05-22T13:45:59Z
2014-06-14T02:16:46Z
scatter_matrix bug
diff --git a/RELEASE.rst b/RELEASE.rst index 436f9d8b833a3..fc54f1b87453e 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -40,11 +40,12 @@ pandas 0.11.1 list of the rows from which to read the index. Added the option, ``tupleize_cols`` to provide compatiblity for the pre 0.11.1 behavior of writing and read...
Currently scatter_matrix passes all unmatched keyword arguments to both scatter and line subplots (off-diagonal plots are scatter, diagonal plots are discrete or continuous histograms). I needed to color the points on the scatter plots but could not pass a "c" argument or pandas would try to pass the "c" argument to th...
https://api.github.com/repos/pandas-dev/pandas/pulls/3673
2013-05-21T18:26:36Z
2013-06-03T01:18:28Z
2013-06-03T01:18:28Z
2014-07-16T08:10:09Z
BUG: convert_objects with convert_dates=coerce was parsing `a` into a date
diff --git a/RELEASE.rst b/RELEASE.rst index 436f9d8b833a3..f2c150341d2c6 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -155,6 +155,8 @@ pandas 0.11.1 - Fix running of bs4 tests when it is not installed (GH3605_) - Fix parsing of html table (GH3606_) - ``read_html()`` now only allows a single backend: ``html5l...
this is a 'bug' in dateutil: `a,t,m,p` are the offenders ``` In [1]: import dateutil In [2]: dateutil.parser.parse('a') Out[2]: datetime.datetime(2013, 5, 21, 0, 0) ```
https://api.github.com/repos/pandas-dev/pandas/pulls/3671
2013-05-21T17:41:33Z
2013-05-21T19:04:01Z
2013-05-21T19:04:01Z
2014-07-09T17:58:31Z
BUG: Fix alignment issue when setitem in a mixed-DataFrame with a Series (GH3668)
diff --git a/RELEASE.rst b/RELEASE.rst index 3940cd6d10b51..436f9d8b833a3 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -146,7 +146,8 @@ pandas 0.11.1 - Correctly parse date columns with embedded (nan/NaT) into datetime64[ns] dtype in ``read_csv`` when ``parse_dates`` is specified (GH3062_) - Fix not consoli...
closes #3668
https://api.github.com/repos/pandas-dev/pandas/pulls/3670
2013-05-21T16:14:14Z
2013-05-21T17:37:31Z
2013-05-21T17:37:31Z
2014-06-23T10:57:56Z
ENH: Allow fetching stock dividend and split info from yahoo
diff --git a/RELEASE.rst b/RELEASE.rst index 4d0417143a789..5634b9b30716d 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -87,6 +87,7 @@ pandas 0.11.1 - Add ``unit`` keyword to ``Timestamp`` and ``to_datetime`` to enable passing of integers or floats that are in an epoch unit of ``s, ms, us, ns`` (e.g. unix ...
Usage: ``` python from pandas.io.data import DataReader ``` Requesting dividends and splits but only dividends available ``` python DataReader('CAT', 'yahoo', '12/31/04', '1/18/05', dividends=True, splits=True) Dividends Date 2005-01-18.0 0.205 ``` Requesting dividends and spl...
https://api.github.com/repos/pandas-dev/pandas/pulls/3666
2013-05-21T11:28:43Z
2014-01-18T03:42:51Z
null
2014-07-01T07:47:18Z
CLN: pandas stata reader should clean up after itself
diff --git a/pandas/io/tests/test_stata.py b/pandas/io/tests/test_stata.py index 79cec2870d687..dccfdc2bb3c63 100644 --- a/pandas/io/tests/test_stata.py +++ b/pandas/io/tests/test_stata.py @@ -141,6 +141,7 @@ def test_write_dta5(self): written_and_read_again = self.read_dta(self.dta5) tm.assert_fram...
https://api.github.com/repos/pandas-dev/pandas/pulls/3665
2013-05-21T02:33:41Z
2013-05-21T12:08:54Z
null
2013-12-04T00:46:37Z
ENH: sort the keys of a passed dict using numpy's sort function
diff --git a/pandas/core/series.py b/pandas/core/series.py index a04e931cf07e3..5d2fc4629e20b 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -456,7 +456,7 @@ def __new__(cls, data=None, index=None, dtype=None, name=None, if isinstance(data, OrderedDict): index = ...
closes #3658
https://api.github.com/repos/pandas-dev/pandas/pulls/3664
2013-05-21T01:24:17Z
2013-05-21T02:51:26Z
null
2014-07-04T15:32:41Z
Rework display logic again.
diff --git a/RELEASE.rst b/RELEASE.rst index e02ad66252bdc..18468ebcd3f4c 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -40,8 +40,8 @@ pandas 0.11.1 list of the rows from which to read the index. Added the option, ``tupleize_cols`` to provide compatiblity for the pre 0.11.1 behavior of writing and readin...
v0.11.0 introduced last-minute changes to the way the dataframe display logic works, and they haven't proven themselves. The churn is unforunate, but if it's broken, fix it. `height` is deprecated. max_rows solely determines the amount of rows displayed. rebased on top of #3657. Merging the previous PR and subseque...
https://api.github.com/repos/pandas-dev/pandas/pulls/3663
2013-05-21T00:07:41Z
2013-05-25T23:08:36Z
2013-05-25T23:08:36Z
2014-06-22T03:00:30Z
BUG: Non-unique indexing via loc and friends fixed when slicing (GH3659_)
diff --git a/RELEASE.rst b/RELEASE.rst index 9b3cc3683c3de..e02ad66252bdc 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -115,6 +115,7 @@ pandas 0.11.1 and handle missing elements like unique indices (GH3561_) - Duplicate indexes with and empty DataFrame.from_records will return a correct frame (GH3562_) ...
closes #3659 This is if you try a non_monotonic selection on a non_unique index (a mouthful)! The reason is we cannot determinate a proper start/end point on what to include ``` In [11]: df = DataFrame({'A' : [1,2,3,4,5,6], 'B' : [3,4,5,6,7,8]}, index = [0,1,0,1,2,3]) In [18]: df Out[18]: A B 0 1 ...
https://api.github.com/repos/pandas-dev/pandas/pulls/3661
2013-05-20T19:44:44Z
2013-05-20T23:34:40Z
2013-05-20T23:34:40Z
2014-06-20T10:08:11Z
ENH: special case HTML repr behaviour on ipnb GH3573
diff --git a/RELEASE.rst b/RELEASE.rst index e02ad66252bdc..c2d4154bf2587 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -40,8 +40,8 @@ pandas 0.11.1 list of the rows from which to read the index. Added the option, ``tupleize_cols`` to provide compatiblity for the pre 0.11.1 behavior of writing and readin...
#3573, and SO question mentioned in #3541
https://api.github.com/repos/pandas-dev/pandas/pulls/3657
2013-05-20T16:31:24Z
2013-05-25T23:08:36Z
2013-05-25T23:08:36Z
2014-06-12T18:10:10Z
DOC: add doc for reading from DataFrame.to_html
diff --git a/RELEASE.rst b/RELEASE.rst index 3940cd6d10b51..1ab2cab84a70a 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -66,6 +66,7 @@ pandas 0.11.1 - ``melt`` now accepts the optional parameters ``var_name`` and ``value_name`` to specify custom column names of the returned DataFrame (GH3649_), thanks @ho...
https://api.github.com/repos/pandas-dev/pandas/pulls/3656
2013-05-20T14:03:15Z
2013-05-21T18:04:45Z
2013-05-21T18:04:45Z
2014-06-21T15:38:39Z
TST: add html5lib to travis
diff --git a/README.rst b/README.rst index 2d49c168eac60..a8ecf01aac953 100644 --- a/README.rst +++ b/README.rst @@ -95,8 +95,14 @@ Optional dependencies - Both `html5lib <https://github.com/html5lib/html5lib-python>`__ **and** `Beautiful Soup 4 <http://www.crummy.com/software/BeautifulSoup>`__: for readin...
closes #3654
https://api.github.com/repos/pandas-dev/pandas/pulls/3655
2013-05-20T13:29:48Z
2013-05-21T13:43:38Z
2013-05-21T13:43:38Z
2014-07-01T18:52:09Z
TST: fix unicdoe errors test_strings
diff --git a/pandas/tests/test_strings.py b/pandas/tests/test_strings.py index d49338af698d1..d057dc5304277 100644 --- a/pandas/tests/test_strings.py +++ b/pandas/tests/test_strings.py @@ -350,8 +350,8 @@ def test_replace(self): tm.assert_series_equal(result, exp) #flags + unicode - values = ...
PTF
https://api.github.com/repos/pandas-dev/pandas/pulls/3652
2013-05-20T01:14:18Z
2013-05-20T01:20:28Z
2013-05-20T01:20:28Z
2014-07-16T08:09:51Z
ENH: Allow for custom variable/value column names when melt()'ing
diff --git a/doc/source/reshaping.rst b/doc/source/reshaping.rst index 9a7a9c2a87e52..5f7526235a4c3 100644 --- a/doc/source/reshaping.rst +++ b/doc/source/reshaping.rst @@ -200,7 +200,9 @@ Reshaping by Melt The ``melt`` function found in ``pandas.core.reshape`` is useful to massage a DataFrame into a format where one...
ENH, CLN: When melt()'ing, allow for specification of custom variable and value names of the resulting DataFrame. Also fix indentation in melt() example to reflect actual output.
https://api.github.com/repos/pandas-dev/pandas/pulls/3649
2013-05-19T18:59:50Z
2013-05-21T14:25:37Z
2013-05-21T14:25:37Z
2014-06-12T14:57:21Z
TST: fixup 32-bit failing tests
diff --git a/pandas/core/format.py b/pandas/core/format.py index cd4364edc6662..3d38caa84492f 100644 --- a/pandas/core/format.py +++ b/pandas/core/format.py @@ -778,8 +778,6 @@ def __init__(self, obj, path_or_buf, sep=",", na_rep='', float_format=None, tupleize_cols=True): self.engine = eng...
PTF
https://api.github.com/repos/pandas-dev/pandas/pulls/3648
2013-05-19T17:20:14Z
2013-05-19T17:28:31Z
2013-05-19T17:28:31Z
2014-07-16T08:09:47Z
BUG: (GH3602) Concat to produce a non-unique columns when duplicates are across dtypes
diff --git a/RELEASE.rst b/RELEASE.rst index 74bafd419af54..4599c2a7553da 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -111,6 +111,7 @@ pandas 0.11.1 - Duplicate indexes with getitem will return items in the correct order (GH3455_, GH3457_) and handle missing elements like unique indices (GH3561_) - D...
closes #3602 DOC: added non-unique index issues to v0.11.1
https://api.github.com/repos/pandas-dev/pandas/pulls/3647
2013-05-19T14:06:28Z
2013-05-19T15:12:02Z
2013-05-19T15:12:02Z
2014-06-17T16:52:38Z
ENH: Allow flags in str.replace keywords
diff --git a/pandas/core/strings.py b/pandas/core/strings.py index 3521c9ff94b11..87a9ff7e9d95d 100644 --- a/pandas/core/strings.py +++ b/pandas/core/strings.py @@ -692,8 +692,9 @@ def contains(self, pat, case=True, flags=0, na=np.nan): return self._wrap_result(result) @copy(str_replace) - def replac...
Fix what appears to be an oversight.
https://api.github.com/repos/pandas-dev/pandas/pulls/3646
2013-05-19T04:18:48Z
2013-05-19T21:13:54Z
2013-05-19T21:13:53Z
2014-07-16T08:09:44Z
ENH: add Series.str iterator
diff --git a/RELEASE.rst b/RELEASE.rst index 4e92ecb24574a..f97708de13442 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -43,6 +43,7 @@ pandas 0.11.1 multi-index column. Note: The default value will change in 0.12 to make the default *to* write and read multi-index columns in the new format. (GH3571_, G...
closes #3638.
https://api.github.com/repos/pandas-dev/pandas/pulls/3645
2013-05-19T01:19:43Z
2013-05-19T16:15:48Z
2013-05-19T16:15:48Z
2014-06-26T17:45:54Z
BUG : Io sql one column (issue #3628)
diff --git a/pandas/io/sql.py b/pandas/io/sql.py index 3002f2f620f5e..b54a30d95bb54 100644 --- a/pandas/io/sql.py +++ b/pandas/io/sql.py @@ -228,7 +228,11 @@ def _write_sqlite(frame, table, names, cur): wildcards = ','.join(['?'] * len(names)) insert_query = 'INSERT INTO %s (%s) VALUES (%s)' % ( tabl...
closes #3628 This should be the proper pull request to - TST test the problem, - BUG the problem of panda fail to write a single column of integer to sqlite Test successfully on Travis CI
https://api.github.com/repos/pandas-dev/pandas/pulls/3644
2013-05-18T22:14:11Z
2013-05-19T16:49:55Z
2013-05-19T16:49:55Z
2014-06-12T07:39:51Z
WIP: Support metadata at de/serialization time (moved)
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 0d7913819f115..1bd9b8c55a762 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -450,6 +450,7 @@ def __init__(self, data=None, index=None, columns=None, dtype=None, raise PandasError('DataFrame constructor not properly called!'...
keeping https://github.com/pydata/pandas/pull/3297 alive, which had the target PR branch wrong.
https://api.github.com/repos/pandas-dev/pandas/pulls/3643
2013-05-18T15:21:13Z
2013-07-22T20:16:36Z
null
2014-06-24T19:48:54Z
single example for release notes
diff --git a/doc/source/missing_data.rst b/doc/source/missing_data.rst index ce19241030704..9df00afcfcf46 100644 --- a/doc/source/missing_data.rst +++ b/doc/source/missing_data.rst @@ -406,7 +406,7 @@ or you can pass the nested dictionary like so .. ipython:: python - df.replace(regex={'b': {'b': r'\s*\.\s*'}}) ...
https://api.github.com/repos/pandas-dev/pandas/pulls/3639
2013-05-17T21:27:54Z
2013-05-19T16:53:11Z
2013-05-19T16:53:11Z
2014-06-17T23:36:42Z
systematic failure when writing a dataframe of 1 column of integer. this should solve issue Issue #3628
diff --git a/pandas/io/sql.py b/pandas/io/sql.py index 3002f2f620f5e..b54a30d95bb54 100644 --- a/pandas/io/sql.py +++ b/pandas/io/sql.py @@ -228,7 +228,11 @@ def _write_sqlite(frame, table, names, cur): wildcards = ','.join(['?'] * len(names)) insert_query = 'INSERT INTO %s (%s) VALUES (%s)' % ( tabl...
...lite ( Issue #3628 ) A push of a dataframe of one column of integers fail ungraciously, because sqlite doesn't recognize well the data type. This should solve the problem by converting back to normal types
https://api.github.com/repos/pandas-dev/pandas/pulls/3636
2013-05-17T18:00:56Z
2013-05-19T15:33:15Z
null
2014-06-25T05:42:34Z
API: Raise on iloc indexing with a non-integer based boolean mask (GH3631)
diff --git a/RELEASE.rst b/RELEASE.rst index 9147968997fc7..acb4f429e81b0 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -70,6 +70,9 @@ pandas 0.11.1 - Add ``squeeze`` keyword to ``groupby`` to allow reduction from DataFrame -> Series if groups are unique. Regression from 0.10.1, partial revert on (GH2893...
closed #3631
https://api.github.com/repos/pandas-dev/pandas/pulls/3635
2013-05-17T14:59:58Z
2013-05-19T14:18:45Z
2013-05-19T14:18:45Z
2014-06-30T11:47:32Z
BUG: (GH3626) issue with alignment of a DataFrame setitem with a piece of another DataFrame
diff --git a/RELEASE.rst b/RELEASE.rst index 219eec42ec20f..19073c97d92eb 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -125,6 +125,7 @@ pandas 0.11.1 - Correctly parse date columns with embedded (nan/NaT) into datetime64[ns] dtype in ``read_csv`` when ``parse_dates`` is specified (GH3062_) - Fix not consoli...
closes #3626
https://api.github.com/repos/pandas-dev/pandas/pulls/3632
2013-05-17T13:05:51Z
2013-05-17T16:28:17Z
2013-05-17T16:28:17Z
2014-06-20T17:50:44Z
ENH: Add Series.sort ascending keyword
diff --git a/pandas/core/series.py b/pandas/core/series.py index e807cf3f1dfd4..a04e931cf07e3 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -2012,7 +2012,7 @@ def dot(self, other): Parameters ---------- - other : Series or DataFrame + other : Series or DataFrame ...
A convenience.
https://api.github.com/repos/pandas-dev/pandas/pulls/3630
2013-05-17T04:47:14Z
2013-05-19T21:14:06Z
2013-05-19T21:14:06Z
2014-07-16T08:09:34Z
BUG: (GH3588) fix pivoting with nan in the index
diff --git a/RELEASE.rst b/RELEASE.rst index 0ade3e92c164a..2f98922eb403e 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -144,6 +144,7 @@ pandas 0.11.1 - Fix plotting of unordered DatetimeIndex (GH3601_) - ``sql.write_frame`` failing when writing a single column to sqlite (GH3628_), thanks to @stonebig + - F...
closed #3588
https://api.github.com/repos/pandas-dev/pandas/pulls/3627
2013-05-16T21:04:18Z
2013-05-19T16:55:29Z
2013-05-19T16:55:29Z
2014-06-14T22:46:49Z
BUG: Fix not consolidating before to_csv (GH3624_)
diff --git a/RELEASE.rst b/RELEASE.rst index aeaebd88c5ee7..219eec42ec20f 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -124,6 +124,7 @@ pandas 0.11.1 - Fix indexing issue in ndim >= 3 with ``iloc`` (GH3617_) - Correctly parse date columns with embedded (nan/NaT) into datetime64[ns] dtype in ``read_csv`` whe...
closes #3624
https://api.github.com/repos/pandas-dev/pandas/pulls/3625
2013-05-16T17:13:03Z
2013-05-16T17:38:59Z
2013-05-16T17:38:59Z
2014-07-16T08:09:28Z
DOC: more informative PerformanceWarning in HDFStore
diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py index d3b7533840a86..0ae835c81d870 100644 --- a/pandas/io/pytables.py +++ b/pandas/io/pytables.py @@ -50,7 +50,7 @@ class AttributeConflictWarning(Warning): pass class PerformanceWarning(Warning): pass performance_doc = """ your performance may suffer as PyT...
https://api.github.com/repos/pandas-dev/pandas/pulls/3623
2013-05-16T14:29:22Z
2013-05-16T14:51:07Z
2013-05-16T14:51:07Z
2014-07-16T08:09:26Z
BUG: (GH3062) Correctly parse date columns with embedded (nan/NaT) into datetime64[ns] in read_csv
diff --git a/RELEASE.rst b/RELEASE.rst index 8c0d56666f4e1..aeaebd88c5ee7 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -122,6 +122,8 @@ pandas 0.11.1 - Fix ``read_csv`` to correctly encode identical na_values, e.g. ``na_values=[-999.0,-999]`` was failing (GH3611_) - Fix indexing issue in ndim >= 3 with ``il...
closes #3062
https://api.github.com/repos/pandas-dev/pandas/pulls/3621
2013-05-16T13:00:16Z
2013-05-16T13:38:33Z
2013-05-16T13:38:33Z
2014-07-16T08:09:24Z
BUG: fixed platform int issues on 32-bit
diff --git a/pandas/core/common.py b/pandas/core/common.py index 6bb4b36862956..a52c932b30ba4 100644 --- a/pandas/core/common.py +++ b/pandas/core/common.py @@ -1612,13 +1612,13 @@ def _astype_nansafe(arr, dtype, copy = True): if is_datetime64_dtype(arr): if dtype == object: return tslib.ints...
https://api.github.com/repos/pandas-dev/pandas/pulls/3620
2013-05-16T12:02:48Z
2013-05-16T12:02:59Z
2013-05-16T12:02:59Z
2014-07-16T08:09:22Z
BUG: Reindex data if plotting time/period index (GH3601)
diff --git a/RELEASE.rst b/RELEASE.rst index 56e3096d23cb2..9147968997fc7 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -127,6 +127,7 @@ pandas 0.11.1 when ``parse_dates`` is specified (GH3062_) - Fix not consolidating before to_csv (GH3624_) - Fix alignment issue when setitem in a DataFrame with a piece of ...
Just wanted to push this fix to see if it looked OK and let the Travis build start. If it looks ok, i will add something in the release notes and try to write a proper test.
https://api.github.com/repos/pandas-dev/pandas/pulls/3619
2013-05-16T02:38:54Z
2013-05-17T23:58:15Z
2013-05-17T23:58:15Z
2014-07-16T08:09:21Z
BUG: (GH3617) Fix indexing issue with ndim >= 3 with iloc
diff --git a/RELEASE.rst b/RELEASE.rst index 503ae0e6bb30e..75d46dd98df3a 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -120,6 +120,7 @@ pandas 0.11.1 - Fix incorrect dtype on groupby with ``as_index=False`` (GH3610_) - Fix ``read_csv`` to correctly encode identical na_values, e.g. ``na_values=[-999.0,-999]`` ...
closes #3617
https://api.github.com/repos/pandas-dev/pandas/pulls/3618
2013-05-16T00:57:42Z
2013-05-16T11:35:05Z
2013-05-16T11:35:05Z
2014-06-30T17:14:22Z
ENH: read-html fixes
diff --git a/README.rst b/README.rst index 3cdb2bf5b31f7..2d49c168eac60 100644 --- a/README.rst +++ b/README.rst @@ -92,12 +92,11 @@ Optional dependencies - openpyxl version 1.6.1 or higher, for writing .xlsx files - xlrd >= 0.9.0 - Needed for Excel I/O - - `lxml <http://lxml.de>`__, or `Beautiful So...
Some updates and bug fixes. See release notes for more details. - ~~`vbench` stuff~~ sort of pointless right now since we don't really have control over the speed of the parsing library - ~~Figure out why `lxml` chooses to ignore things~~ reported a bug w/ example to lxml people - ~~Figure out why `bs4`'s `thead.find_a...
https://api.github.com/repos/pandas-dev/pandas/pulls/3616
2013-05-15T22:17:07Z
2013-05-20T11:43:11Z
2013-05-20T11:43:11Z
2014-06-18T01:06:50Z
BUG: (GH3611) Fix read_csv to correctly encode identical na_values
diff --git a/RELEASE.rst b/RELEASE.rst index 1f5bd2591470b..503ae0e6bb30e 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -118,6 +118,8 @@ pandas 0.11.1 - Fix modulo and integer division on Series,DataFrames to act similary to ``float`` dtypes to return ``np.nan`` or ``np.inf`` as appropriate (GH3590_) - Fix ...
eg. na_values=[-999.0,-999] was failing closes #3611
https://api.github.com/repos/pandas-dev/pandas/pulls/3615
2013-05-15T22:16:46Z
2013-05-16T01:01:21Z
2013-05-16T01:01:20Z
2014-06-27T14:18:58Z
ENH add date to DatetimeIndex
diff --git a/RELEASE.rst b/RELEASE.rst index 1f5bd2591470b..e44c2d0d37e08 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -49,6 +49,7 @@ pandas 0.11.1 - support datelike columns with a timezone as data_columns (GH2852_) - table writing performance improvements. - Add modulo operator to Series, DataFrame + -...
Allows the date to be pulled out from a DatetimeIndex easily/efficiently. Similar to #3180, which was for the time-part to be extracted. _From SO question: http://stackoverflow.com/questions/16563552/pandas-fancy-indexing-a-dataframe_. ~~I haven't added this to release notes, as maybe too late for 11.1?~~
https://api.github.com/repos/pandas-dev/pandas/pulls/3614
2013-05-15T21:00:01Z
2013-05-17T16:00:23Z
2013-05-17T16:00:22Z
2014-06-26T11:26:58Z
BUG: Fix incorrect dtype on groupby with ``as_index=False`` (GH3610_)
diff --git a/RELEASE.rst b/RELEASE.rst index d81a0e405ddd9..006da5f8e76af 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -114,6 +114,7 @@ pandas 0.11.1 in a frame (GH3594_) - Fix modulo and integer division on Series,DataFrames to act similary to ``float`` dtypes to return ``np.nan`` or ``np.inf`` as appro...
closes #3610
https://api.github.com/repos/pandas-dev/pandas/pulls/3613
2013-05-15T18:57:28Z
2013-05-15T19:27:59Z
2013-05-15T19:27:59Z
2014-06-12T13:38:01Z
BUG/TST: fix failing html tests
diff --git a/pandas/io/tests/test_html.py b/pandas/io/tests/test_html.py index d0468026caef3..65c50dc96db97 100644 --- a/pandas/io/tests/test_html.py +++ b/pandas/io/tests/test_html.py @@ -13,24 +13,16 @@ from pandas.util.testing import assert_frame_equal, network -def _skip_if_no_parser(): +def _skip_if_no(module...
closes #3605
https://api.github.com/repos/pandas-dev/pandas/pulls/3607
2013-05-14T22:51:47Z
2013-05-15T22:18:50Z
null
2014-06-25T21:04:16Z
Categorical cleanup
diff --git a/RELEASE.rst b/RELEASE.rst index 31627cec01d1e..5b4cd67f4a246 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -48,6 +48,7 @@ pandas 0.11.1 to append an index with a different name than the existing - support datelike columns with a timezone as data_columns (GH2852_) - table writing performanc...
Make categorical a little more user-friendly and add some documentation.
https://api.github.com/repos/pandas-dev/pandas/pulls/3603
2013-05-14T19:41:21Z
2013-05-19T21:12:04Z
2013-05-19T21:12:04Z
2014-06-27T14:18:49Z
BUG: Fix integer modulo and division to make integer and float dtypes work similarly for invalid values
diff --git a/RELEASE.rst b/RELEASE.rst index 31627cec01d1e..0b6ed0b4d2853 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -48,6 +48,7 @@ pandas 0.11.1 to append an index with a different name than the existing - support datelike columns with a timezone as data_columns (GH2852_) - table writing performanc...
closes #3590 This is a numpy oddity that treats them differently. ``` In [131]: p = DataFrame({ 'first' : [3,4,5,8], 'second' : [0,0,0,3] }) In [132]: p % 0 Out[132]: first second 0 NaN NaN 1 NaN NaN 2 NaN NaN 3 NaN NaN In [133]: p % p Out[133]: first second 0 0 NaN 1 ...
https://api.github.com/repos/pandas-dev/pandas/pulls/3600
2013-05-14T14:28:08Z
2013-05-14T21:48:10Z
2013-05-14T21:48:10Z
2014-07-16T08:09:04Z
BUG: Add squeeze keyword to groupby to allow reduction in returned type
diff --git a/RELEASE.rst b/RELEASE.rst index 006da5f8e76af..1f5bd2591470b 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -65,6 +65,9 @@ pandas 0.11.1 ``timedelta64[ns]`` to ``object/int`` (GH3425_) - Do not allow datetimelike/timedeltalike creation except with valid types (e.g. cannot pass ``datetime64[ms]`...
This will allow a reduction in the returned type from DataFrame -> Series if the groups are unique. This is a fix for a regression from 0.10.1. Allows functionaility in #2893, by specifying `squeeze=True` in groupby call. #3596 functionaility is back as the default This returns a Series because we are passing `sque...
https://api.github.com/repos/pandas-dev/pandas/pulls/3599
2013-05-14T11:54:01Z
2013-05-15T20:19:14Z
2013-05-15T20:19:14Z
2014-07-06T08:10:53Z
BUG: Fixed bug where a time-series was being selected in preference to an actual column name
diff --git a/RELEASE.rst b/RELEASE.rst index 70060ee1b3497..31627cec01d1e 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -108,6 +108,8 @@ pandas 0.11.1 - Fixed bug in reset_index with ``NaN`` in a multi-index (GH3586_) - ``fillna`` methods now raise a ``TypeError`` when the ``value`` parameter is a ``list`` o...
close #3594
https://api.github.com/repos/pandas-dev/pandas/pulls/3597
2013-05-14T00:36:12Z
2013-05-14T10:51:08Z
2013-05-14T10:51:08Z
2014-07-04T18:54:47Z
BUG: (GH3593) fixed a bug in the incorrect conversion of datetime64[ns] in combine_first
diff --git a/RELEASE.rst b/RELEASE.rst index 4085d350f3766..862d458f34e22 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -104,6 +104,7 @@ pandas 0.11.1 - ``combine_first`` not returning the same dtype in cases where it can (GH3552_) - Fixed bug with ``Panel.transpose`` argument aliases (GH3556_) - Fixed platfor...
closes #3593
https://api.github.com/repos/pandas-dev/pandas/pulls/3595
2013-05-13T22:07:42Z
2013-05-13T22:49:40Z
2013-05-13T22:49:40Z
2014-06-19T14:13:13Z
BUG: fix take platorm issue with PeriodIndex (GH3579)
diff --git a/RELEASE.rst b/RELEASE.rst index eaff573a7510a..4085d350f3766 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -103,6 +103,7 @@ pandas 0.11.1 - Fix ``.diff`` on datelike and timedelta operations (GH3100_) - ``combine_first`` not returning the same dtype in cases where it can (GH3552_) - Fixed bug with...
closes #3579
https://api.github.com/repos/pandas-dev/pandas/pulls/3591
2013-05-13T18:02:38Z
2013-05-13T18:55:40Z
2013-05-13T18:55:40Z
2014-06-24T14:21:10Z
BUG: Fixed bug in reset_index with ``NaN`` in a multi-index (GH3586_)
diff --git a/RELEASE.rst b/RELEASE.rst index efd6b87e59c62..eaff573a7510a 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -103,6 +103,7 @@ pandas 0.11.1 - Fix ``.diff`` on datelike and timedelta operations (GH3100_) - ``combine_first`` not returning the same dtype in cases where it can (GH3552_) - Fixed bug with...
closes #3586
https://api.github.com/repos/pandas-dev/pandas/pulls/3587
2013-05-13T13:29:29Z
2013-05-13T17:35:20Z
2013-05-13T17:35:20Z
2014-06-29T12:28:29Z
raise on fillna passed a list or tuple
diff --git a/RELEASE.rst b/RELEASE.rst index 4085d350f3766..042b827617327 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -105,6 +105,8 @@ pandas 0.11.1 - Fixed bug with ``Panel.transpose`` argument aliases (GH3556_) - Fixed platform bug in ``PeriodIndex.take`` (GH3579_) - Fixed bug in reset_index with ``NaN`` i...
fixes #3435.
https://api.github.com/repos/pandas-dev/pandas/pulls/3585
2013-05-13T05:40:00Z
2013-05-13T22:51:06Z
2013-05-13T22:51:05Z
2014-06-18T07:35:10Z
ENH: add regex functionality to DataFrame.replace
diff --git a/doc/source/api.rst b/doc/source/api.rst index ca95a739ed661..c5b83e4af6999 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -465,6 +465,7 @@ Missing data handling DataFrame.dropna DataFrame.fillna + DataFrame.replace Reshaping, sorting, transposing ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~...
addresses #2285. cc @jreback and #3582.
https://api.github.com/repos/pandas-dev/pandas/pulls/3584
2013-05-13T03:37:37Z
2013-05-17T19:24:58Z
2013-05-17T19:24:58Z
2014-06-26T07:33:10Z
Moving pandasjson back into mainline pandas
diff --git a/LICENSES/ULTRAJSON_LICENSE b/LICENSES/ULTRAJSON_LICENSE new file mode 100644 index 0000000000000..defca46e7f820 --- /dev/null +++ b/LICENSES/ULTRAJSON_LICENSE @@ -0,0 +1,34 @@ +Copyright (c) 2011-2013, ESN Social Software AB and Jonas Tarnstrom +All rights reserved. + +Redistribution and use in source and ...
This extension works perfectly fine on Python 2.x and all platforms to my knowledge except win32 on MinGW (it's fine with VC2008+ AFAIK). It might have problems on some of @yarikoptic's esoteric Debian platforms, we should identify which ones those are and disable the extension in the setup.py until we have a chance to...
https://api.github.com/repos/pandas-dev/pandas/pulls/3583
2013-05-12T01:36:52Z
2013-06-11T19:27:46Z
null
2014-06-26T17:48:41Z
DOC: add mention of idx* methods in max/min methods of Series/DataFrame
diff --git a/doc/source/basics.rst b/doc/source/basics.rst index da3bbcb4f0dc2..f3c1a6617a5d5 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -401,6 +401,10 @@ value, ``idxmin`` and ``idxmax`` return the first matching index: df3 df3['A'].idxmin() +.. note:: + + ``idxmin`` and ``idxmax`` a...
closes #3574.
https://api.github.com/repos/pandas-dev/pandas/pulls/3580
2013-05-11T21:15:29Z
2013-05-13T17:34:35Z
2013-05-13T17:34:35Z
2014-07-16T08:08:44Z
ENH: allow to_csv to write multi-index columns, read_csv to read with header=list arg
diff --git a/RELEASE.rst b/RELEASE.rst index acb4f429e81b0..74bafd419af54 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -34,6 +34,15 @@ pandas 0.11.1 courtesy of @cpcloud. (GH3477_) - Support for reading Amazon S3 files. (GH3504_) - Added module for reading and writing Stata files: pandas.io.stata (GH1512_) ...
In theory should close: #3571, #1651, #3141 Works, but a couple of issues/caveats: - ~~index_col needs to be specified as an integer list (can be fixed)~~ - header is a list of rows to read that contain the multi-index, a row that is skipped (e.g. [0,1,3,5], will just be skipped, like a comment) - the writing forma...
https://api.github.com/repos/pandas-dev/pandas/pulls/3575
2013-05-11T04:08:31Z
2013-05-19T14:22:04Z
2013-05-19T14:22:04Z
2014-06-12T12:04:57Z
ENH: plot only numeric data and raise an exception *before* plotting if there is no numeric data
diff --git a/RELEASE.rst b/RELEASE.rst index b4f3fa1999c8a..efc0f912060b7 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -67,6 +67,10 @@ pandas 0.11.1 to specify custom column names of the returned DataFrame (GH3649_), thanks @hoechenberger - ``read_html`` no longer performs hard date conversion + - Plotti...
Raise a `TypeError` alerting the user to the fact that they are trying to plot nonnumeric data, or if there are any numeric data plot those. closes #1818.
https://api.github.com/repos/pandas-dev/pandas/pulls/3572
2013-05-11T00:06:40Z
2013-05-21T21:01:11Z
2013-05-21T21:01:11Z
2014-06-13T08:15:50Z
DOC: document non-preservation of dtypes across rows with iterrows
diff --git a/doc/source/basics.rst b/doc/source/basics.rst index 5739fe0922d6d..da3bbcb4f0dc2 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -835,7 +835,6 @@ containing the data in each row: ...: print '%s\n%s' % (row_index, row) ...: - For instance, a contrived way to transpose ...
iterrows doesn't preserve dtypes across rows, document it, #3566. i learned that you can nest ..ipython:: blocks in ..note:: blocks in sphinx. sweet.
https://api.github.com/repos/pandas-dev/pandas/pulls/3569
2013-05-10T23:09:09Z
2013-05-11T11:47:28Z
2013-05-11T11:47:28Z
2014-07-07T00:24:42Z
DOC: add bs4/lxml install note to README.rst
diff --git a/README.rst b/README.rst index ea713006c7189..ee728ce7fc7a4 100644 --- a/README.rst +++ b/README.rst @@ -90,6 +90,12 @@ Optional dependencies * openpyxl version 1.6.1 or higher, for writing .xlsx files * xlrd >= 0.9.0 * Needed for Excel I/O + * `lxml <http://lxml.de>`__, or `Beautiful Sou...
Glanced at the GitHub landing page and didn't see this.
https://api.github.com/repos/pandas-dev/pandas/pulls/3565
2013-05-10T15:30:06Z
2013-05-10T22:32:39Z
2013-05-10T22:32:39Z
2014-06-14T20:18:33Z
BUG: Duplicate indexes with and empty DataFrame.from_records will return a correct frame (GH3562)
diff --git a/RELEASE.rst b/RELEASE.rst index 8e48395efc9ab..82f88a0c8e592 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -77,6 +77,7 @@ pandas 0.11.1 - ``.loc`` was not raising when passed an integer list (GH3449_) - Unordered time series selection was misbehaving when using label slicing (GH3448_) - Duplicate ...
closes #3562
https://api.github.com/repos/pandas-dev/pandas/pulls/3564
2013-05-10T15:00:17Z
2013-05-10T16:01:33Z
2013-05-10T16:01:33Z
2014-06-29T09:51:40Z
BUG: (GH3561) non-unique indexers with a list-like now return in the same order as the passed values
diff --git a/RELEASE.rst b/RELEASE.rst index 31627cec01d1e..4e6570669656d 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -91,6 +91,7 @@ pandas 0.11.1 (removed warning) (GH2786_), and fix (GH3230_) - Fix to_csv to handle non-unique columns (GH3495_) - Duplicate indexes with getitem will return items in t...
close #3561
https://api.github.com/repos/pandas-dev/pandas/pulls/3563
2013-05-10T14:42:27Z
2013-05-14T21:44:58Z
2013-05-14T21:44:57Z
2014-07-10T09:20:30Z
ENH: unicode of PeriodIndex returns valid Python code
diff --git a/pandas/tseries/period.py b/pandas/tseries/period.py index d9dfa51bc0bff..abb7486de9351 100644 --- a/pandas/tseries/period.py +++ b/pandas/tseries/period.py @@ -1102,6 +1102,25 @@ def __repr__(self): output += 'length: %d' % len(self) return output + def __unicode__(self): + ou...
addresses #3460.
https://api.github.com/repos/pandas-dev/pandas/pulls/3560
2013-05-10T01:22:14Z
2013-05-10T09:29:37Z
2013-05-10T09:29:37Z
2014-06-23T18:20:54Z
ENH: raise useful error message on invalid concat arguments
diff --git a/pandas/tools/merge.py b/pandas/tools/merge.py index 6d224ffcb7b05..7f05a045e36af 100644 --- a/pandas/tools/merge.py +++ b/pandas/tools/merge.py @@ -888,6 +888,11 @@ class _Concatenator(object): def __init__(self, objs, axis=0, join='outer', join_axes=None, keys=None, levels=None, nam...
fixes #3481.
https://api.github.com/repos/pandas-dev/pandas/pulls/3559
2013-05-10T00:38:57Z
2013-05-10T10:43:07Z
2013-05-10T10:43:07Z
2014-06-26T17:46:41Z
fix panel tranpose arguments api bug
diff --git a/RELEASE.rst b/RELEASE.rst index 8e48395efc9ab..89f7fcc6fdd37 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -101,6 +101,7 @@ pandas 0.11.1 e.g. add datetimes, multiple timedelta x datetime - Fix ``.diff`` on datelike and timedelta operations (GH3100_) - ``combine_first`` not returning the same dt...
fixes #3556.
https://api.github.com/repos/pandas-dev/pandas/pulls/3558
2013-05-09T23:57:03Z
2013-05-10T20:08:55Z
2013-05-10T20:08:55Z
2014-06-12T15:13:45Z
fix TypeError for display.multi_sparse == False
diff --git a/pandas/core/format.py b/pandas/core/format.py index fa2135bb4310c..ecce3b54239c9 100644 --- a/pandas/core/format.py +++ b/pandas/core/format.py @@ -736,7 +736,7 @@ def _write_hierarchical_rows(self, fmt_values, indent): row.extend(idx_values[i]) row.extend(fmt_values[j][i]...
fixes #3553.
https://api.github.com/repos/pandas-dev/pandas/pulls/3557
2013-05-09T22:25:23Z
2013-05-10T09:05:54Z
2013-05-10T09:05:54Z
2014-07-16T08:08:02Z
BUG: combine_first not returning the same dtype in cases where it can (GH3552)
diff --git a/RELEASE.rst b/RELEASE.rst index 1970b00c05add..984dcfa0f1d39 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -38,6 +38,7 @@ pandas 0.11.1 - Fixed various issues with internal pprinting code, the repr() for various objects including TimeStamp and *Index now produces valid python code strings and ...
closes #3552 ENH: `convert_objects` now accepts a `copy` parameter (defaults to `True`)
https://api.github.com/repos/pandas-dev/pandas/pulls/3555
2013-05-09T18:45:14Z
2013-05-09T19:16:14Z
2013-05-09T19:16:14Z
2014-06-16T08:28:16Z
BUG: Fix .diff() on datelike and timedelta operations (GH3100_)
diff --git a/RELEASE.rst b/RELEASE.rst index ece8de259021f..1970b00c05add 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -96,6 +96,7 @@ pandas 0.11.1 - Properly convert np.datetime64 objects in a Series (GH3416_) - Raise a TypeError on invalid datetime/timedelta operations e.g. add datetimes, multiple timedel...
close #3100
https://api.github.com/repos/pandas-dev/pandas/pulls/3554
2013-05-09T18:11:21Z
2013-05-09T18:52:53Z
2013-05-09T18:52:53Z
2014-06-12T13:40:05Z
BUG: raise on invalid operations for timedelta/datetime
diff --git a/RELEASE.rst b/RELEASE.rst index 7c9982961c01f..ece8de259021f 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -94,6 +94,8 @@ pandas 0.11.1 - Fixed bug in selecting month/quarter/year from a series would not select the time element on the last day (GH3546_) - Properly convert np.datetime64 objects i...
e.g. can't add 2 datetimes, nor multiply timedelta \* datetime
https://api.github.com/repos/pandas-dev/pandas/pulls/3550
2013-05-09T14:38:32Z
2013-05-09T15:25:46Z
2013-05-09T15:25:46Z
2014-06-21T11:10:14Z
BUG/TST: fixed up retaining of index names in the table .info (like freq/tz)
diff --git a/RELEASE.rst b/RELEASE.rst index a69ace7c51890..7c9982961c01f 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -41,8 +41,9 @@ pandas 0.11.1 - ``HDFStore`` - will retain index attributes (freq,tz,name) on recreation (GH3499_) - - will warn with a FrequencyWarning if you are attempting to append - ...
adjunct to #3531 (retention of index name attributes was not working)
https://api.github.com/repos/pandas-dev/pandas/pulls/3549
2013-05-09T00:16:27Z
2013-05-09T00:34:59Z
2013-05-09T00:34:59Z
2014-07-16T08:07:44Z