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
DOC: Fix name in interpolate plot.
diff --git a/doc/source/missing_data.rst b/doc/source/missing_data.rst index e7966aa71486c..3e2183b072ac6 100644 --- a/doc/source/missing_data.rst +++ b/doc/source/missing_data.rst @@ -375,11 +375,11 @@ Compare several methods: np.random.seed(2) ser = Series(np.arange(1, 10.1, .25)**2 + np.random.randn(37)) - ...
https://api.github.com/repos/pandas-dev/pandas/pulls/5165
2013-10-09T23:03:25Z
2013-10-09T23:39:21Z
2013-10-09T23:39:21Z
2017-04-05T02:05:41Z
ENH: add to_frame method to Series
diff --git a/doc/source/api.rst b/doc/source/api.rst index 8772b858de2cc..dfb562bcc3298 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -438,6 +438,7 @@ Serialization / IO / Conversion Series.to_pickle Series.to_csv Series.to_dict + Series.to_frame Series.to_sparse Series.to_string ...
Adding a method to Series to promote it to a DataFrame. I've wished this existed so that when a method returns a series, and you could easily promote it to a DataFrame so that it's easier to add columns to it.
https://api.github.com/repos/pandas-dev/pandas/pulls/5164
2013-10-09T20:02:07Z
2013-10-10T13:00:50Z
2013-10-10T13:00:50Z
2014-06-13T06:38:18Z
DOC: add DataFrame et al class docstring to api docs
diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst new file mode 100644 index 0000000000000..e9af7e8df8bab --- /dev/null +++ b/doc/source/_templates/autosummary/class.rst @@ -0,0 +1,33 @@ +{% extends "!autosummary/class.rst" %} + +{% block methods %} +{% if methods %}...
closes #4790 I copied the approach of numpy: extending the autosummary class template to automatically generate all method stub files: - https://github.com/numpy/numpy/blob/master/doc/source/_templates/autosummary/class.rst - example output: http://docs.scipy.org/doc/numpy/reference/generated/numpy.ndarray.html I add...
https://api.github.com/repos/pandas-dev/pandas/pulls/5160
2013-10-08T20:54:57Z
2013-10-14T18:18:38Z
2013-10-14T18:18:38Z
2014-06-18T10:12:24Z
API/PERF: restore auto-boxing on isnull/notnull for Series (w/o copy) preserves perf gains
diff --git a/pandas/core/common.py b/pandas/core/common.py index 009de0395f361..a417e00af5d3e 100644 --- a/pandas/core/common.py +++ b/pandas/core/common.py @@ -202,6 +202,11 @@ def _isnull_ndarraylike(obj): else: result = np.isnan(values) + # box + if isinstance(obj, ABCSeries): + from pan...
restore API before #5154 boxing via null/isnull is same as 0.12 (aside from now `isnull/notnull` are now available on `NDFrame` objs as well)
https://api.github.com/repos/pandas-dev/pandas/pulls/5159
2013-10-08T17:05:16Z
2013-10-08T17:26:45Z
2013-10-08T17:26:45Z
2014-07-16T08:33:46Z
DOC: Added filtering example to groupby doc
diff --git a/doc/source/groupby.rst b/doc/source/groupby.rst index 723aee64fd0d9..7b769eeccbe68 100644 --- a/doc/source/groupby.rst +++ b/doc/source/groupby.rst @@ -571,6 +571,13 @@ with NaNs. dff.groupby('B').filter(lambda x: len(x) > 2, dropna=False) +For dataframes with multiple columns, filters should expli...
closes https://github.com/pydata/pandas/issues/4630
https://api.github.com/repos/pandas-dev/pandas/pulls/5158
2013-10-08T14:30:31Z
2013-10-08T14:51:04Z
null
2013-10-08T14:51:18Z
BUG: Fix to_datetime() uncaught error with unparseable inputs #4928
diff --git a/doc/source/release.rst b/doc/source/release.rst index 85d9be1295e29..b3668ed80096e 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -575,6 +575,7 @@ Bug Fixes function (:issue:`5150`). - Fix a bug with ``NDFrame.replace()`` which made replacement appear as though it was (inc...
closes #4928
https://api.github.com/repos/pandas-dev/pandas/pulls/5157
2013-10-08T14:17:38Z
2013-10-08T14:30:56Z
2013-10-08T14:30:56Z
2014-06-17T13:24:48Z
PERF: remove auto-boxing on isnull/notnull
diff --git a/doc/source/api.rst b/doc/source/api.rst index d062512ac3a5b..8772b858de2cc 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -258,6 +258,8 @@ Conversion / Constructors Series.__init__ Series.astype Series.copy + Series.isnull + Series.notnull Indexing, iteration ~~~~~~~~~~~~~~...
- API/CLN: provide isnull/notnull on NDFrame objects - PERF: remove auto-boxing on isnull/notnull related #5135
https://api.github.com/repos/pandas-dev/pandas/pulls/5154
2013-10-08T13:04:26Z
2013-10-08T13:14:12Z
2013-10-08T13:14:12Z
2014-07-16T08:33:41Z
TST/CI/BUG: fix borked call to read_html testing code
diff --git a/pandas/io/tests/test_html.py b/pandas/io/tests/test_html.py index 9b0fb1cacfb65..71567fe2e599a 100644 --- a/pandas/io/tests/test_html.py +++ b/pandas/io/tests/test_html.py @@ -86,13 +86,14 @@ def test_bs4_version_fails(): class TestReadHtml(unittest.TestCase): + @classmethod + def setUpClass(cls...
closes #5150.
https://api.github.com/repos/pandas-dev/pandas/pulls/5151
2013-10-08T03:12:45Z
2013-10-08T03:41:58Z
2013-10-08T03:41:58Z
2014-06-27T22:14:09Z
TST: use default utf8 encoding when passing encoding to parser as Bytes (GH5141)
diff --git a/pandas/io/tests/test_parsers.py b/pandas/io/tests/test_parsers.py index ada6ffdc34257..cf0c01c8dff50 100644 --- a/pandas/io/tests/test_parsers.py +++ b/pandas/io/tests/test_parsers.py @@ -2147,7 +2147,7 @@ def test_fwf_compression(self): def test_BytesIO_input(self): if not compat.PY3: ...
closes #5141
https://api.github.com/repos/pandas-dev/pandas/pulls/5149
2013-10-08T01:50:52Z
2013-10-08T02:04:28Z
2013-10-08T02:04:28Z
2014-07-16T08:33:38Z
ENH: Cleanup backend for Offsets and Period
diff --git a/doc/source/release.rst b/doc/source/release.rst index 121cfb92b0eb2..e16a12ce0bc91 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -312,6 +312,11 @@ Improvements to existing features in item handling (:issue:`6745`, :issue:`6988`). - Improve performance in certain reindexing operati...
This PR is a work in progress Fixes #5306 - Removing unused imports Fixes #5082 - Added `inferred_freq_offset` Fixes #5028 - fixed issues with `_offset_map` Fixes #4878 - `freq` parameter for `Period` init supports full set of Offsets. Fixes #5418 - raise `DateParseError` rather than incorrect `KeyError` for invalid f...
https://api.github.com/repos/pandas-dev/pandas/pulls/5148
2013-10-08T00:39:32Z
2014-07-28T14:59:20Z
null
2014-10-23T17:15:44Z
BUG: allow tuples in recursive call to replace
diff --git a/doc/source/release.rst b/doc/source/release.rst index 848bd1035fadc..85d9be1295e29 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -573,6 +573,8 @@ Bug Fixes - Fix bound checking for Timestamp() with datetime64 input (:issue:`4065`) - Fix a bug where ``TestReadHtml`` wasn't callin...
This avoids the seeming passage of regular expressions closes #5143.
https://api.github.com/repos/pandas-dev/pandas/pulls/5145
2013-10-07T23:24:10Z
2013-10-08T04:35:21Z
2013-10-08T04:35:21Z
2014-06-24T07:44:28Z
TST: fillna(values) equiv of replace(np.nan,values)
diff --git a/pandas/tests/test_frame.py b/pandas/tests/test_frame.py index 8a40c359d99a5..6f8031538e520 100644 --- a/pandas/tests/test_frame.py +++ b/pandas/tests/test_frame.py @@ -3744,31 +3744,31 @@ def tuple_generator(length): for i in range(length): letters = 'ABCDEFGHIJKLMNOPQRSTUVWXY...
closes #5136 (just tests), as not a bug
https://api.github.com/repos/pandas-dev/pandas/pulls/5139
2013-10-07T12:48:49Z
2013-10-07T13:00:51Z
2013-10-07T13:00:51Z
2014-06-26T11:25:23Z
ENH: json default_handler param
diff --git a/doc/source/io.rst b/doc/source/io.rst index 0fabfa7077a95..9a893fb18cc8e 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -1054,8 +1054,9 @@ with optional parameters: - ``double_precision`` : The number of decimal places to use when encoding floating point values, default 10. - ``force_ascii`` :...
This adds a `default_handler` param to `to_json`, which if passed must be a callable which takes one argument (the object to convert) and returns a serialisable object. The `default_handler` will only be used if an object cannot otherwise be serialised. Note right now the JSON serialiser has direct handling for: - Pyt...
https://api.github.com/repos/pandas-dev/pandas/pulls/5138
2013-10-07T06:02:37Z
2013-10-07T12:36:33Z
2013-10-07T12:36:33Z
2014-06-15T16:16:36Z
ENH: Json support for datetime.time
diff --git a/doc/source/release.rst b/doc/source/release.rst index 3e072da164ab2..e6453e7d7411d 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -97,6 +97,7 @@ Improvements to existing features overlapping color and style arguments (:issue:`4402`) - Significant table writing performance impro...
Adds `datetime.time` support to JSON serialiser. Note: - times are encoded to strings and will be decoded to strings. - `date_unit` and `date_format` params have no affect on `time` serialisation, they are always iso formatted. Fixes #4873
https://api.github.com/repos/pandas-dev/pandas/pulls/5137
2013-10-07T03:03:53Z
2013-10-07T12:27:06Z
2013-10-07T12:27:05Z
2014-06-12T23:21:59Z
BUG: Treat a list/ndarray identically for iloc indexing with list-like (GH5006)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 8488d03f97cbd..3e072da164ab2 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -297,7 +297,6 @@ API Changes (:issue:`4501`) - Support non-unique axes in a Panel via indexing operations (:issue:`4960`) - Internal Refactoring ...
closes #5006
https://api.github.com/repos/pandas-dev/pandas/pulls/5134
2013-10-06T23:55:10Z
2013-10-07T00:10:08Z
2013-10-07T00:10:08Z
2014-06-18T14:51:20Z
BUG: set_names should not change is_ relationship
diff --git a/pandas/core/index.py b/pandas/core/index.py index c39364d58e205..8e98cc6fb25bb 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -335,7 +335,6 @@ def set_names(self, names, inplace=False): raise TypeError("Must pass list-like as `names`.") if inplace: idx = ...
inplace change shouldn't change identity on set names (my bad)
https://api.github.com/repos/pandas-dev/pandas/pulls/5132
2013-10-06T22:25:20Z
2013-10-06T23:24:16Z
2013-10-06T23:24:16Z
2014-07-16T08:33:25Z
ENH: Added lxml-liberal html parsing flavor
diff --git a/doc/source/release.rst b/doc/source/release.rst index 8488d03f97cbd..c1a369ffa3ae4 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -172,7 +172,8 @@ Improvements to existing features - :meth:`~pandas.io.json.json_normalize` is a new method to allow you to create a flat table from...
Closes #5130
https://api.github.com/repos/pandas-dev/pandas/pulls/5131
2013-10-06T20:51:31Z
2013-11-01T00:23:43Z
null
2014-07-21T06:35:36Z
ENH: Support for PyExcelerate as an Excel writer engine.
diff --git a/.travis.yml b/.travis.yml index 387dec1ed2658..f46d9c4735ca4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,6 +41,8 @@ before_install: install: - echo "Waldo2" - ci/install.sh + # Temp testing measure while waiting for PyPi release. + - pip install git+git://github.com/kz26/PyExcelerate.git ...
This is an initial patch to add PyExcelerate as an Excel writer engine. **It isn't suitable for merge** yet since there is issue with date handling in PyExcelerate that I am working to resolve with the authors. I just want this to appear on the pandas timeline for now so I can refer to it in other PRs. 1. The requirem...
https://api.github.com/repos/pandas-dev/pandas/pulls/5128
2013-10-06T19:42:15Z
2013-12-22T21:02:16Z
null
2014-06-29T09:44:06Z
add test for indexing with integer arrays
diff --git a/pandas/tests/test_indexing.py b/pandas/tests/test_indexing.py index 67c87277647c8..574d1a4ddb0c3 100644 --- a/pandas/tests/test_indexing.py +++ b/pandas/tests/test_indexing.py @@ -15,7 +15,8 @@ from pandas.core.api import (DataFrame, Index, Series, Panel, notnull, isnull, Mul...
I had a try at solving issue #5006, but it does not look as trivial to me as @jreback suggested. ;-) I added a test for indexing with int-typed arrays containing single indices, which currently fails. I spent some time reading test_indexing, because my hunch is that it could be better integrated with the existing tes...
https://api.github.com/repos/pandas-dev/pandas/pulls/5127
2013-10-06T19:39:58Z
2013-10-06T23:55:33Z
null
2014-06-23T23:20:34Z
BUG: Fix segfault on isnull(MultiIndex)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 23f3533500849..3892d5b77a08e 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -584,6 +584,8 @@ Bug Fixes - Made sure different locales are tested on travis-ci (:issue:`4918`). Also adds a couple of utilities for getting locale...
Now raises NotImplementedError b/c not yet clear what it should return. Fixes #5123.
https://api.github.com/repos/pandas-dev/pandas/pulls/5125
2013-10-06T17:25:14Z
2013-10-11T12:01:34Z
2013-10-11T12:01:34Z
2014-06-13T10:01:30Z
Add indexer and str to API documentation
diff --git a/doc/make.py b/doc/make.py index dbce5aaa7a1b4..532395b41ce95 100755 --- a/doc/make.py +++ b/doc/make.py @@ -72,7 +72,12 @@ def upload_prev(ver, doc_root='./'): if os.system(pdf_cmd): raise SystemExit('Upload PDF to %s from %s failed' % (ver, doc_root)) - +def build_pandas(): + os.chd...
closes https://github.com/pydata/pandas/issues/5068
https://api.github.com/repos/pandas-dev/pandas/pulls/5124
2013-10-06T16:58:05Z
2013-10-15T18:40:49Z
2013-10-15T18:40:49Z
2014-09-03T22:59:19Z
TST: Tests and fix for unhandled data types in Excel writers.
diff --git a/pandas/io/excel.py b/pandas/io/excel.py index 6b83fada19001..44b323abf45c2 100644 --- a/pandas/io/excel.py +++ b/pandas/io/excel.py @@ -16,6 +16,7 @@ from pandas.core import config from pandas.core.common import pprint_thing import pandas.compat as compat +import pandas.core.common as com from warnings...
Added tests and a fix for unhandled numpy data types in the Excel writers. Issue #3122.
https://api.github.com/repos/pandas-dev/pandas/pulls/5122
2013-10-06T08:18:32Z
2013-10-14T01:40:48Z
2013-10-14T01:40:48Z
2014-06-16T01:40:59Z
CLN: clean up parser options
diff --git a/doc/source/release.rst b/doc/source/release.rst index a3908ab01903d..8488d03f97cbd 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -564,6 +564,8 @@ Bug Fixes - Fixed a bug where ``groupby.plot()`` and friends were duplicating figures multiple times (:issue:`5102`). - Provide ...
Also add a test to make sure that the C parser options validation is actually covered example travis fail: https://travis-ci.org/pydata/pandas/jobs/12171563 explanation (for the record): if you print out `options` before this commit you'll see that they are all overwritten with a single value. Whatever this value ...
https://api.github.com/repos/pandas-dev/pandas/pulls/5121
2013-10-05T22:34:34Z
2013-10-05T23:28:25Z
2013-10-05T23:28:25Z
2014-06-24T19:40:22Z
CLN: Remove leftover test.py file
diff --git a/test.py b/test.py deleted file mode 100644 index b3295e2d830e7..0000000000000 --- a/test.py +++ /dev/null @@ -1,12 +0,0 @@ - - -import pandas as pd -df = pd.DataFrame( - {'pid' : [1,1,1,2,2,3,3,3], - 'tag' : [23,45,62,24,45,34,25,62], - }) - -g = df.groupby('tag') - -import pdb; pdb.set_tra...
Extra test file at top level with a set_trace on it was checked in with the json normalize PR. I'm assuming it shouldn't be here. @jreback @cpcloud? I think it's causing the test suite to hang for me, since I run it from within the pandas directory.
https://api.github.com/repos/pandas-dev/pandas/pulls/5119
2013-10-05T16:25:24Z
2013-10-05T16:32:34Z
2013-10-05T16:32:34Z
2014-07-16T08:33:15Z
CLN: Remove redundant initialization from Int64Index and Float64Index constructor
diff --git a/pandas/core/index.py b/pandas/core/index.py index 3f491b4271ddc..c39364d58e205 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -201,6 +201,8 @@ def _string_data_error(cls, data): @classmethod def _coerce_to_ndarray(cls, data): + """coerces data to ndarray, raises on scala...
`Int64Index` repeated itself and actually reconstructed an ndarray twice when passed in data was an iterable. This simplifies it down but does not actually change any behavior. (you'll see that there was basically exactly the same code twice)
https://api.github.com/repos/pandas-dev/pandas/pulls/5117
2013-10-05T16:02:04Z
2013-10-05T19:43:22Z
2013-10-05T19:43:22Z
2014-07-16T08:33:14Z
API: convert objects on fillna when object result dtype, related (GH5103)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 9fa111d32e4bb..8f5308a90a0c7 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -562,6 +562,7 @@ Bug Fixes (:issue:`5102`). - Fixed a bug where ``groupby.plot()`` and friends were duplicating figures multiple times (:issue:...
related #5103
https://api.github.com/repos/pandas-dev/pandas/pulls/5112
2013-10-04T18:18:26Z
2013-10-04T19:53:42Z
2013-10-04T19:53:42Z
2014-07-04T13:18:07Z
DOC: doc fixups
diff --git a/doc/source/api.rst b/doc/source/api.rst index 5ad36b3c8b45c..d062512ac3a5b 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -870,7 +870,7 @@ Serialization / IO / Conversion .. currentmodule:: pandas.core.index -.. _api.index +.. _api.index: Index ----- @@ -878,7 +878,6 @@ Index **Many ...
closes #5110.
https://api.github.com/repos/pandas-dev/pandas/pulls/5111
2013-10-04T16:54:20Z
2013-10-04T16:54:53Z
2013-10-04T16:54:53Z
2014-07-16T08:33:10Z
BUG: read_html should convert array skiprows into a list
diff --git a/pandas/io/html.py b/pandas/io/html.py index 96bedbf390af6..878ef37ea4459 100644 --- a/pandas/io/html.py +++ b/pandas/io/html.py @@ -90,8 +90,10 @@ def _get_skiprows(skiprows): """ if isinstance(skiprows, slice): return lrange(skiprows.start or 0, skiprows.stop, skiprows.step or 1) - e...
not sure why this is only showing up here, but it should be converted to a `list` anyway: https://travis-ci.org/cpcloud/pandas/jobs/12117482
https://api.github.com/repos/pandas-dev/pandas/pulls/5106
2013-10-04T01:23:01Z
2013-10-04T02:56:27Z
null
2014-07-11T22:34:05Z
BUG: allow plot, boxplot, hist and completion on GroupBy objects
diff --git a/doc/source/10min.rst b/doc/source/10min.rst index 705514ac0c364..85aafd6787f16 100644 --- a/doc/source/10min.rst +++ b/doc/source/10min.rst @@ -74,6 +74,43 @@ Having specific :ref:`dtypes <basics.dtypes>` df2.dtypes +If you're using IPython, tab completion for column names (as well as public +attri...
closes #5102 also fixes extra plots created by groupby plotting (couldn't find an issue), now there's a test that ensures that groupby only plots the number of axes/figures it's supposed to removes an unused internal groupby parameter
https://api.github.com/repos/pandas-dev/pandas/pulls/5105
2013-10-04T00:57:36Z
2013-10-04T17:19:18Z
2013-10-04T17:19:18Z
2014-06-20T23:44:00Z
BUG: fix PeriodIndex join with DatetimeIndex stack overflow
diff --git a/doc/source/release.rst b/doc/source/release.rst index eaf10977af4f7..ebba7444e82d8 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -553,6 +553,8 @@ Bug Fixes passed ``index_col=0`` (:issue:`5066`). - Fixed a bug where :func:`~pandas.read_html` was incorrectly infering the t...
closes #3899.
https://api.github.com/repos/pandas-dev/pandas/pulls/5101
2013-10-03T22:04:19Z
2013-10-04T02:39:18Z
2013-10-04T02:39:18Z
2014-07-16T08:33:03Z
TST: win32 paths cannot be turned into URLs by prefixing them with "file://" v2
diff --git a/.gitignore b/.gitignore index 201a965a0f409..edc6a54cf4345 100644 --- a/.gitignore +++ b/.gitignore @@ -38,3 +38,4 @@ pandas/io/*.json .pydevproject .settings .idea +*.pdb diff --git a/doc/source/release.rst b/doc/source/release.rst index 49de8dddd7210..77d86b8a7a9f1 100644 --- a/doc/source/release.rst ...
Rebased on master (unable to use same pull request). Closes #4580. see http://stackoverflow.com/questions/11687478/convert-a-filename-to-a-file-url
https://api.github.com/repos/pandas-dev/pandas/pulls/5100
2013-10-03T19:40:15Z
2013-10-28T23:20:03Z
2013-10-28T23:20:02Z
2014-07-16T08:33:01Z
date_range should (at least optionally) deal with right-open intervals
diff --git a/doc/source/release.rst b/doc/source/release.rst index 4a25a98f2cfbe..68bcc9c14a01b 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -174,6 +174,8 @@ Improvements to existing features - :meth:`~pandas.io.json.json_normalize` is a new method to allow you to create a flat table from...
It is confusing that, albeit the name suggests otherwise, `date_range` behaves differently compared to the standard Python `range` generator in that it returns the right-closed interval.
https://api.github.com/repos/pandas-dev/pandas/pulls/4579
2013-10-03T19:15:12Z
2013-10-15T12:38:35Z
2013-10-15T12:38:35Z
2014-06-27T14:49:22Z
DOC: str.match should (obviously) be str.extract.
diff --git a/doc/source/v0.13.0.txt b/doc/source/v0.13.0.txt index 44ef8f0d1a57e..fe6d796d95968 100644 --- a/doc/source/v0.13.0.txt +++ b/doc/source/v0.13.0.txt @@ -428,14 +428,14 @@ Enhancements .. ipython:: python - Series(['a1', 'b2', 'c3']).str.match( + Series(['a1', 'b2', 'c3']).str.extract( ...
https://api.github.com/repos/pandas-dev/pandas/pulls/5099
2013-10-03T17:17:49Z
2013-10-03T17:25:17Z
2013-10-03T17:25:17Z
2014-07-16T08:32:59Z
BUG: non-unique indexing in a Panel (GH4960)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 4f4681b112664..9b755c9ad2cda 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -290,6 +290,7 @@ API Changes call with additional keyword args (:issue:`4435`) - Provide __dir__ method (and local context) for tab completion / rem...
TST: update Panel tests to iterate by position rather than location (for matching non-unique) closes #4960
https://api.github.com/repos/pandas-dev/pandas/pulls/5097
2013-10-03T15:57:50Z
2013-10-03T21:14:18Z
2013-10-03T21:14:18Z
2014-06-30T18:24:07Z
TST: Groupby filter tests involved len, closing #4447
diff --git a/pandas/core/groupby.py b/pandas/core/groupby.py index e70c01ffcb12f..538831692fd67 100644 --- a/pandas/core/groupby.py +++ b/pandas/core/groupby.py @@ -17,7 +17,7 @@ from pandas.util.decorators import cache_readonly, Appender import pandas.core.algorithms as algos import pandas.core.common as com -from ...
closed #4447 (tests only, so no release notes necessary) ...which was apparently fixed by #4657. More tests looking for shape-related bugs in filter would be nice. So far I have no discovered any.
https://api.github.com/repos/pandas-dev/pandas/pulls/5096
2013-10-03T14:39:24Z
2013-10-13T23:37:53Z
2013-10-13T23:37:53Z
2014-06-29T17:32:18Z
TST: Add skip test to excelwriter contextmanager
diff --git a/pandas/io/tests/test_excel.py b/pandas/io/tests/test_excel.py index 2cc94524b5d19..38b3ee192ab7a 100644 --- a/pandas/io/tests/test_excel.py +++ b/pandas/io/tests/test_excel.py @@ -21,12 +21,12 @@ import pandas as pd -def _skip_if_no_xlrd(version=(0, 9)): +def _skip_if_no_xlrd(): try: imp...
Fixes #5094.
https://api.github.com/repos/pandas-dev/pandas/pulls/5095
2013-10-03T03:22:10Z
2013-10-03T22:07:48Z
2013-10-03T22:07:48Z
2014-07-16T08:32:54Z
BUG: MultiIndex.get_level_values() replaces NA by another value (#5074)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 216b7f2ca6e5a..40ad07aea1ecf 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -569,6 +569,7 @@ Bug Fixes - Fixed a bug where default options were being overwritten in the option parser cleaning (:issue:`5121`). - Treat a li...
closes #5074 Do you really prefer using a mask? It seems to have a lower memory footprint but it requires some tricks for corner cases. ``` num = self._get_level_number(level) unique_vals = self.levels[num] # .values labels = self.labels[num] mask = labels == -1 if len(unique_vals) > 0: values = unique_vals.take...
https://api.github.com/repos/pandas-dev/pandas/pulls/5090
2013-10-02T21:44:18Z
2013-10-07T21:25:49Z
2013-10-07T21:25:49Z
2014-06-21T03:19:29Z
TST: Tests for multi-index construction of an all-nan frame (GH4078)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 4e5178d8a554a..057802dc51af5 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -524,6 +524,7 @@ Bug Fixes - Bug in setting with ``ix/loc`` and a mixed int/string index (:issue:`4544`) - Make sure series-series boolean comparions ...
closes #4078
https://api.github.com/repos/pandas-dev/pandas/pulls/5089
2013-10-02T16:51:14Z
2013-10-02T20:54:59Z
2013-10-02T20:54:59Z
2014-06-23T22:01:54Z
BUG: fixed a bug in multi-level indexing with a Timestamp partial indexer (GH4294)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 058ea165120a6..4e5178d8a554a 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -523,6 +523,7 @@ Bug Fixes and other reshaping issues. - Bug in setting with ``ix/loc`` and a mixed int/string index (:issue:`4544`) - Make sure ...
closes #4294
https://api.github.com/repos/pandas-dev/pandas/pulls/5088
2013-10-02T16:16:55Z
2013-10-02T19:10:22Z
2013-10-02T19:10:22Z
2014-06-24T23:01:59Z
DOC: CONTRIBUTING.md: Gold plating: syntax, punctuation, Markdown format...
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ac972b47e7b60..2966aed5f57ee 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,147 +3,161 @@ All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome. -The Github "issues" tab contains some issues labels "Go...
...ting :sparkles:
https://api.github.com/repos/pandas-dev/pandas/pulls/5086
2013-10-02T14:13:43Z
2013-10-08T03:52:50Z
2013-10-08T03:52:50Z
2014-06-16T06:29:44Z
CLN: Remove internal classes from MultiIndex pickle.
diff --git a/pandas/core/index.py b/pandas/core/index.py index e966912e509e2..3f491b4271ddc 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -2458,8 +2458,9 @@ def __contains__(self, key): def __reduce__(self): """Necessary for making this object picklable""" object_state = list(np...
FrozenNDArray had made it into the MI pickle. No reason to do that and just complicates pickle compat going forward. Now they just output ndarray instead (which also avoids the unnecessary nested pickle previously occurring). Fixes #5076.
https://api.github.com/repos/pandas-dev/pandas/pulls/5084
2013-10-02T12:01:23Z
2013-10-02T23:36:29Z
2013-10-02T23:36:29Z
2014-06-25T18:39:41Z
CLN: Fix order of index methods.
diff --git a/pandas/core/index.py b/pandas/core/index.py index 6d0a7d2f9f86a..f6a88f4164191 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -93,35 +93,6 @@ class Index(FrozenNDArray): _engine_type = _index.ObjectEngine - def is_(self, other): - """ - More flexible, faster check...
I moved `__new__` below other methods on Index. Makes it look weird.
https://api.github.com/repos/pandas-dev/pandas/pulls/5081
2013-10-02T02:19:06Z
2013-10-02T03:41:17Z
2013-10-02T03:41:17Z
2014-07-16T08:32:42Z
BUG: Give correct ndim, shape and size properties
diff --git a/pandas/core/index.py b/pandas/core/index.py index 6d0a7d2f9f86a..d0ea7c63804a0 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -2430,6 +2430,20 @@ def nlevels(self): def levshape(self): return tuple(len(x) for x in self.levels) + @property + def ndim(self): + re...
Treats it like 2d array rather than array of tuples. I like it because it's more informative - but we could also just describe `.values`. Fixes #4842. Still working out some kinks.
https://api.github.com/repos/pandas-dev/pandas/pulls/5079
2013-10-02T01:21:00Z
2013-10-02T01:30:08Z
null
2014-08-05T12:07:55Z
BUG: Make Index, Int64Index and MI repr evalable
diff --git a/pandas/core/base.py b/pandas/core/base.py index f390592a6f6c4..2acc045156720 100644 --- a/pandas/core/base.py +++ b/pandas/core/base.py @@ -175,4 +175,4 @@ def __unicode__(self): Invoked by unicode(df) in py2 only. Yields a Unicode String in both py2/py3. """ prepr = com.pprint_t...
MI repr was missing a comma between its arguments and Index reprs needed to quote their dtypes. Only talking about Index, Int64Index and MultiIndex. Tseries indices (like PeriodIndex and DatetimeIndex) are more complicated and could be covered separately.
https://api.github.com/repos/pandas-dev/pandas/pulls/5077
2013-10-02T00:43:52Z
2013-10-12T17:21:01Z
2013-10-12T17:21:01Z
2014-09-02T13:21:29Z
TST/CI: make sure that locales are tested
diff --git a/.travis.yml b/.travis.yml index 387dec1ed2658..818278eebf5b5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,13 +6,13 @@ python: matrix: include: - python: 2.6 - env: NOSE_ARGS="not slow" CLIPBOARD=xclip + env: NOSE_ARGS="not slow" CLIPBOARD=xclip LOCALE_OVERRIDE="it_IT.UTF-8" - py...
related #4918
https://api.github.com/repos/pandas-dev/pandas/pulls/5073
2013-10-01T20:55:32Z
2013-10-09T04:07:26Z
2013-10-09T04:07:25Z
2014-06-25T23:07:36Z
CI/ENH: use nose-show-skipped plugin to show skipped tests
diff --git a/ci/install.sh b/ci/install.sh index 357d962d9610d..a30aba9338db2 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -38,6 +38,9 @@ if [ -n "$LOCALE_OVERRIDE" ]; then sudo locale-gen "$LOCALE_OVERRIDE" fi + +# show-skipped is working at this particular commit +time pip install git+git://github.com/cp...
https://api.github.com/repos/pandas-dev/pandas/pulls/5072
2013-10-01T20:51:21Z
2013-10-01T23:53:13Z
2013-10-01T23:53:13Z
2014-07-16T08:32:30Z
API: default export for to_clipboard is now csv/tsv suitable for excel (GH3368)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 6ea4e5a3046b2..34cc4e499a0d5 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -207,6 +207,8 @@ API Changes - ``Series.get`` with negative indexers now returns the same as ``[]`` (:issue:`4390`) - allow ``ix/loc`` for Series/Data...
closes #3368
https://api.github.com/repos/pandas-dev/pandas/pulls/5070
2013-10-01T16:42:18Z
2013-10-16T14:49:07Z
2013-10-16T14:49:07Z
2014-06-12T07:22:42Z
CLN: remove unreachable code in tslib.pyx
diff --git a/pandas/tseries/tests/test_offsets.py b/pandas/tseries/tests/test_offsets.py index a77b0afb20b52..0f7a356e84664 100644 --- a/pandas/tseries/tests/test_offsets.py +++ b/pandas/tseries/tests/test_offsets.py @@ -13,8 +13,7 @@ DateOffset, Week, YearBegin, YearEnd, Hour, Minute, Second, Day, Micro, Mil...
https://api.github.com/repos/pandas-dev/pandas/pulls/5067
2013-10-01T04:23:23Z
2013-10-01T12:34:06Z
2013-10-01T12:34:06Z
2014-07-13T18:10:17Z
BUG: Bug in setting with ix/loc and a mixed int/string index (GH4544)
diff --git a/doc/source/release.rst b/doc/source/release.rst index f5e7e66c98a64..65e6ca0e1d95c 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -520,6 +520,7 @@ Bug Fixes chunks of the same file. Now coerces to numerical type or raises warning. (:issue:`3866`) - Fix a bug where reshaping a `...
closes #4544
https://api.github.com/repos/pandas-dev/pandas/pulls/5064
2013-09-30T23:00:52Z
2013-10-01T01:21:47Z
2013-10-01T01:21:47Z
2014-06-24T06:52:45Z
Issue 1014 Possibly attempt object -> float64 coercion in to_sparse
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index dbd67aa3c5c25..b7b2301d6b50c 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -956,6 +956,8 @@ def to_sparse(self, fill_value=None, kind='block'): ------- y : SparseDataFrame """ + if any(dt == object for dt ...
closes #1014 I've added a check for dtype=object and try to coerce it to a float in frame.to_sparse
https://api.github.com/repos/pandas-dev/pandas/pulls/5063
2013-09-30T21:33:50Z
2014-03-09T15:03:57Z
null
2014-06-16T16:13:45Z
VIS: let scatter plots obey mpl color scheme (#3338)
diff --git a/pandas/tools/plotting.py b/pandas/tools/plotting.py index 6631a3cf8c6f1..d6c0482d86be4 100644 --- a/pandas/tools/plotting.py +++ b/pandas/tools/plotting.py @@ -229,6 +229,7 @@ def scatter_matrix(frame, alpha=0.5, figsize=None, ax=None, grid=False, >>> df = DataFrame(np.random.randn(1000, 4), columns=[...
Closes #3338. Fixes the remaining plot functions that don't follow the matplotlib style (functions based on scatter plots). Rationale: - set the color keyword `c` to default one defined in matplotlibs rcParams if `c` was not specified by the user (because `c='b'` is harcoded in matplotlib `scatter` method). - the `co...
https://api.github.com/repos/pandas-dev/pandas/pulls/5060
2013-09-30T18:36:20Z
2013-10-04T23:17:53Z
2013-10-04T23:17:52Z
2014-07-16T08:32:22Z
BF: import isnull
diff --git a/pandas/tools/merge.py b/pandas/tools/merge.py index d5bd1072f6a3e..3a99793937096 100644 --- a/pandas/tools/merge.py +++ b/pandas/tools/merge.py @@ -19,7 +19,7 @@ from pandas.util.decorators import cache_readonly, Appender, Substitution from pandas.core.common import (PandasError, ABCSeries, ...
Used in the code see http://nipy.bic.berkeley.edu/builders/pandas-py2.x-wheezy-sparc/builds/148/steps/shell_4/logs/stdio for the failure
https://api.github.com/repos/pandas-dev/pandas/pulls/5059
2013-09-30T16:21:52Z
2013-09-30T16:42:04Z
2013-09-30T16:42:04Z
2014-07-16T08:32:21Z
TST: allow to check for specific xlrd version and skip reader test if xlrd < 0.9
diff --git a/pandas/io/tests/test_excel.py b/pandas/io/tests/test_excel.py index 0c6332205ffe5..2cc94524b5d19 100644 --- a/pandas/io/tests/test_excel.py +++ b/pandas/io/tests/test_excel.py @@ -21,12 +21,12 @@ import pandas as pd -def _skip_if_no_xlrd(): +def _skip_if_no_xlrd(version=(0, 9)): try: imp...
See http://nipy.bic.berkeley.edu/builders/pandas-py2.x-wheezy-sparc/builds/148/steps/shell_4/logs/stdio for failure when outdated xlrd found (e.g. on debian stable wheezy)
https://api.github.com/repos/pandas-dev/pandas/pulls/5058
2013-09-30T16:17:57Z
2013-10-02T23:08:16Z
2013-10-02T23:08:16Z
2014-06-28T20:27:27Z
DOC: proposed fix for #4699: Period() docstring inconsistent with code when freq has a mult != 1
diff --git a/pandas/tseries/period.py b/pandas/tseries/period.py index b28da7c9d7e0b..819777c2350a5 100644 --- a/pandas/tseries/period.py +++ b/pandas/tseries/period.py @@ -51,7 +51,7 @@ class Period(PandasObject): value : Period or compat.string_types, default None The time period represented (e.g., '4Q2...
closes #4699
https://api.github.com/repos/pandas-dev/pandas/pulls/5057
2013-09-30T14:42:25Z
2013-10-04T12:50:04Z
2013-10-04T12:50:04Z
2014-06-25T16:32:09Z
BUG: fix Index's __iadd__ methods
diff --git a/doc/source/release.rst b/doc/source/release.rst index daee460fc50a1..05626096fe6fe 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -214,6 +214,7 @@ API Changes data - allowing metadata changes. - ``MultiIndex.astype()`` now only allows ``np.object_``-like dtypes and n...
closes #4996 Aliases **iadd** = **add**. Not doing anything else for now until time to consider.
https://api.github.com/repos/pandas-dev/pandas/pulls/5053
2013-09-30T03:13:38Z
2013-10-02T21:17:01Z
2013-10-02T21:17:01Z
2014-07-07T01:51:22Z
ENH/DOC: Cleanup docstrings on NDFrame
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index f7d2b161759ed..b256d76fbcdd2 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -26,7 +26,7 @@ _default_index, _maybe_upcast, _is_sequence, _infer_dtype_from_scalar, _values_from...
Resolves much of #4717. Basically cleans up docstrings in a few places plus, for the few functions that need them, uses a shared dict of function definitions to share them. This has the side-benefit of letting the function docstrings reside right next to the functions themselves, maintaining readability.
https://api.github.com/repos/pandas-dev/pandas/pulls/5052
2013-09-30T02:58:12Z
2013-10-01T04:00:14Z
2013-10-01T04:00:14Z
2014-07-16T08:32:14Z
CLN: Fixups to exceptions in generic
diff --git a/doc/source/release.rst b/doc/source/release.rst index 5db612059685b..5b6a0d15be943 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -317,10 +317,11 @@ API Changes - Arithemtic func factories are now passed real names (suitable for using with super) (:issue:`5240`) - Provide numpy c...
Improved message and better exception types.
https://api.github.com/repos/pandas-dev/pandas/pulls/5051
2013-09-30T02:18:40Z
2013-10-24T18:18:37Z
null
2013-10-24T18:18:37Z
API: provide __dir__ method (and local context) for tab completion / remove ipython completers code
diff --git a/doc/source/release.rst b/doc/source/release.rst index 801158a00b9ab..23b8252cd57e5 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -274,6 +274,8 @@ API Changes support ``pow`` or ``mod`` with non-scalars. (:issue:`3765`) - Provide numpy compatibility with 1.7 for a calling conve...
closes #4501 this removes the ipython completers code and instead defines `__dir__`, with a `_local_dir` that a class can override NDFrame objects will have a pre-defined local of the info_axis (e.g. columns in a DataFrame) for example: ``` In [1]: df = DataFrame(columns=list('ABC')) In [2]: df. Display all 199 po...
https://api.github.com/repos/pandas-dev/pandas/pulls/5050
2013-09-30T02:01:15Z
2013-10-01T00:04:14Z
2013-10-01T00:04:14Z
2014-06-25T01:17:18Z
CLN: pytables cleanup added functiones (previously deleted/moved to comp...
diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py index 42a434c005a4c..ff0e1b08d7247 100644 --- a/pandas/io/pytables.py +++ b/pandas/io/pytables.py @@ -3966,227 +3966,6 @@ def _need_convert(kind): return True return False - -class Coordinates(object): - - """ holds a returned coordinates lis...
...utation/pytables.py)
https://api.github.com/repos/pandas-dev/pandas/pulls/5047
2013-09-29T21:09:35Z
2013-09-29T21:23:13Z
2013-09-29T21:23:13Z
2014-07-16T08:32:08Z
BUG: Fix unbound local in exception handling in core/index
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 935dff44ad49e..f7d2b161759ed 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -3342,6 +3342,7 @@ def _apply_standard(self, func, axis, ignore_failures=False, reduce=True): else: # pragma : no cover raise AssertionError('...
Only would occur if both enumerations failed. better way to handle than try/except.
https://api.github.com/repos/pandas-dev/pandas/pulls/5046
2013-09-29T20:37:00Z
2013-09-29T22:48:09Z
2013-09-29T22:48:09Z
2014-07-16T08:32:07Z
CLN/BUG/TST: Fix and test multiple places using undefined names.
diff --git a/pandas/computation/align.py b/pandas/computation/align.py index f420d0dacf34c..2f776f2db053f 100644 --- a/pandas/computation/align.py +++ b/pandas/computation/align.py @@ -10,6 +10,7 @@ import pandas as pd from pandas import compat import pandas.core.common as com +import pandas.computation.ops as ops ...
Pyflakes revealed that there are a number of places using undefined names. I've tried to fix them where I can; however, those parts of the code are also clearly untested (or tested with `assertRaises(Exception,...)`) so they need some love. The PyTables code had a bunch of places with undefined `TermValue`, as did sta...
https://api.github.com/repos/pandas-dev/pandas/pulls/5045
2013-09-29T20:30:22Z
2014-01-03T22:24:57Z
null
2014-01-03T22:24:57Z
TST: sparc test fixups
diff --git a/pandas/core/series.py b/pandas/core/series.py index 90d535e51580c..4a77a5669948a 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -135,6 +135,12 @@ def __init__(self, data=None, index=None, dtype=None, name=None, if isinstance(data, MultiIndex): raise NotImp...
closes #4396
https://api.github.com/repos/pandas-dev/pandas/pulls/5043
2013-09-29T19:53:09Z
2013-09-29T20:16:10Z
2013-09-29T20:16:10Z
2014-06-22T11:58:23Z
EHN: Allow load_data to load problematic R datasets
diff --git a/doc/source/r_interface.rst b/doc/source/r_interface.rst index 79a87cb49f027..4f5c5a03a1be5 100644 --- a/doc/source/r_interface.rst +++ b/doc/source/r_interface.rst @@ -20,7 +20,7 @@ its release 2.3, while the current interface is designed for the 2.2.x series. We recommend to use 2.2.x over other series ...
TST: Move tests from rpy/common.py to tests/test_rpy.py TST: Add tests to demonstrate the enhancements made to rpy/common.py. DOC: Add explanation to doc/source/release.rst
https://api.github.com/repos/pandas-dev/pandas/pulls/5042
2013-09-29T17:08:06Z
2013-10-02T21:26:47Z
2013-10-02T21:26:47Z
2014-06-23T00:59:28Z
TST: added null conversions for TimeDeltaBlock in core/internals related (GH4396)
diff --git a/pandas/core/internals.py b/pandas/core/internals.py index f10e1612f7fe9..fd9aed58798fe 100644 --- a/pandas/core/internals.py +++ b/pandas/core/internals.py @@ -23,7 +23,7 @@ from pandas.tslib import Timestamp from pandas import compat from pandas.compat import range, lrange, lmap, callable, map, zip - +...
closes #4396 NaT wraparound bug again, fixed
https://api.github.com/repos/pandas-dev/pandas/pulls/5040
2013-09-29T15:50:44Z
2013-09-29T17:07:57Z
2013-09-29T17:07:57Z
2014-07-09T23:52:42Z
CLN: PEP8 cleanup
diff --git a/pandas/compat/__init__.py b/pandas/compat/__init__.py index a2531ebd43c82..982b5de49e6fa 100644 --- a/pandas/compat/__init__.py +++ b/pandas/compat/__init__.py @@ -120,7 +120,8 @@ def iteritems(obj, **kwargs): """replacement for six's iteritems for Python2/3 compat uses 'iteritems' if availabl...
I stated a PEP8 cleanup and did it for a few modules. Changed only the things where this doesn't produce ugly code. If this is acceptable, I can continue doing this and go through the whole pandas codebase. There are just a few things that I would like to check if this is acceptable: 1. PEP8: "For flowing long blocks ...
https://api.github.com/repos/pandas-dev/pandas/pulls/5038
2013-09-29T13:33:56Z
2013-11-17T01:09:10Z
2013-11-17T01:09:10Z
2014-07-16T08:32:03Z
DOC: make experimental functionality more visible in release notes
diff --git a/doc/source/release.rst b/doc/source/release.rst index 66c3dcd203a6a..1f0e447429d6a 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -60,6 +60,21 @@ New features - Clipboard functionality now works with PySide (:issue:`4282`) - New ``extract`` string method returns regex matches mor...
closes #5031
https://api.github.com/repos/pandas-dev/pandas/pulls/5037
2013-09-29T04:47:48Z
2013-09-29T04:48:11Z
2013-09-29T04:48:11Z
2014-07-16T08:32:01Z
R dataset
diff --git a/doc/source/r_interface.rst b/doc/source/r_interface.rst index 79a87cb49f027..4f5c5a03a1be5 100644 --- a/doc/source/r_interface.rst +++ b/doc/source/r_interface.rst @@ -20,7 +20,7 @@ its release 2.3, while the current interface is designed for the 2.2.x series. We recommend to use 2.2.x over other series ...
Motivation for this pull request came from this problem: http://stackoverflow.com/q/19039356/190597. The problems: - `pandas.rpy.common.load_data` currently fails to load high-dimensional arrays such as the "Titanic" dataset. `load_data` prints an error to stdout and returns None. - Applying `load_data` to "iris3", "...
https://api.github.com/repos/pandas-dev/pandas/pulls/5036
2013-09-29T03:47:22Z
2013-09-29T17:01:40Z
null
2013-10-02T22:26:05Z
BUG/CLN: numpy compat with pandas numeric functions and cln of same (GH4435)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 73e7e3affd944..2c975e58d9575 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -267,6 +267,9 @@ API Changes ``SparsePanel``, etc.), now support the entire set of arithmetic operators and arithmetic flex methods (add, sub, mul...
related #4787 (keywords now pass thru to _reduce), default for `numeric` is still `None` closes #4435 BUG: provide numpy compatibility with 1.7 when implicity using `__array__`, IOW: `np.prod(s)`, or `np.mean(df,axis=1)` will now work (because numpy _decided_ to try to see if the object has this function and then pa...
https://api.github.com/repos/pandas-dev/pandas/pulls/5034
2013-09-29T02:25:49Z
2013-09-29T19:20:49Z
2013-09-29T19:20:49Z
2014-06-24T03:57:23Z
ENH: Excel output in non-ascii encodings
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 01e0d74ef8ce6..a32d2d793b331 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -1351,7 +1351,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='', ...
ENH/TST: Support for non-ascii encodings in DataFrame.to_excel Closes #3710. Notice: Despite (for my modest knowledge of python) it should be easier to just put encoding='ascii' in the declaration of to_excel in line 1352 of frame.py, I've declared it with encoding=None as jreback suggested, and then making it defaul...
https://api.github.com/repos/pandas-dev/pandas/pulls/5025
2013-09-28T21:13:11Z
2014-03-12T13:00:58Z
null
2014-06-27T23:28:48Z
CLN/ENH: Provide full suite of arithmetic (and flex) methods to all NDFrame objects.
diff --git a/doc/source/api.rst b/doc/source/api.rst index 8dcf9c0f52de4..f74f5f0d28a58 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -275,12 +275,30 @@ Binary operator functions :toctree: generated/ Series.add - Series.div - Series.mul Series.sub + Series.mul + Series.div + Series...
There's a lot of overlap right now, this is the first step to trying to make this cleaner. - Abstract all arithmetic methods into core/ops - Add full range of flex arithmetic methods to all NDFrame/ndarray PandasObjects (except for SparsePanel pow and mod, which only work for scalars) - Normalize arithmetic methods...
https://api.github.com/repos/pandas-dev/pandas/pulls/5022
2013-09-28T20:37:55Z
2013-09-29T17:02:25Z
2013-09-29T17:02:25Z
2014-07-09T23:49:20Z
ER: give a better error message for hashing indices
diff --git a/pandas/core/index.py b/pandas/core/index.py index d488a29182a18..ffa1d7cfa0c3b 100644 --- a/pandas/core/index.py +++ b/pandas/core/index.py @@ -600,7 +600,7 @@ def __contains__(self, key): return False def __hash__(self): - return hash(self.view(np.ndarray)) + raise TypeEr...
https://api.github.com/repos/pandas-dev/pandas/pulls/5019
2013-09-28T19:55:19Z
2013-09-28T20:57:43Z
2013-09-28T20:57:43Z
2014-07-16T08:31:55Z
BUG: Fix a bug when indexing np.nan via loc/iloc (GH5016)
diff --git a/doc/source/release.rst b/doc/source/release.rst index daee460fc50a1..66c3dcd203a6a 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -497,6 +497,7 @@ Bug Fixes - Fixed wrong index name during read_csv if using usecols. Applies to c parser only. (:issue:`4201`) - ``Timestamp`` object...
closes #5016
https://api.github.com/repos/pandas-dev/pandas/pulls/5018
2013-09-28T16:19:45Z
2013-09-28T19:22:45Z
2013-09-28T19:22:45Z
2014-07-03T18:50:32Z
ENH: PySide support for qtpandas.
diff --git a/doc/source/release.rst b/doc/source/release.rst index 058ea165120a6..488fd8deacc2e 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -77,6 +77,7 @@ Experimental Features (:issue:`4897`). - Add msgpack support via ``pd.read_msgpack()`` and ``pd.to_msgpack()`` / ``df.to_msgpack()`` ...
Added PySide support for the qtpandas DataFrameWidget.
https://api.github.com/repos/pandas-dev/pandas/pulls/5013
2013-09-27T23:39:07Z
2013-10-02T21:12:03Z
2013-10-02T21:12:03Z
2014-06-25T08:10:52Z
ENH: Removing unnecessary whitespace when formatting to a HTML table.
diff --git a/pandas/core/format.py b/pandas/core/format.py index ae0d95b1c3074..6ba7bfcc8f16c 100644 --- a/pandas/core/format.py +++ b/pandas/core/format.py @@ -62,6 +62,7 @@ ------- formatted : string (or unicode, depending on data and options)""" + class CategoricalFormatter(object): def __init__(se...
Closes #4987. The problem is that all formatters always call `_make_fixed_width`. So, the only solution I found is just to strip the unnecessary whitespace.
https://api.github.com/repos/pandas-dev/pandas/pulls/5012
2013-09-27T21:15:14Z
2014-02-04T09:30:05Z
null
2014-06-18T01:33:02Z
ER: give concat a better error message for incompatible types
diff --git a/doc/source/release.rst b/doc/source/release.rst index 13e2d5a136c21..daee460fc50a1 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -136,6 +136,8 @@ Improvements to existing features - Both ExcelFile and read_excel to accept an xlrd.Book for the io (formerly path_or_buf) argument...
closes #4608
https://api.github.com/repos/pandas-dev/pandas/pulls/5011
2013-09-27T20:32:30Z
2013-09-27T21:29:12Z
2013-09-27T21:29:12Z
2014-06-24T15:20:06Z
API: default for mangle_dup_cols is now False for read_csv. Fair warning in 0.12 (GH3612)
diff --git a/doc/source/io.rst b/doc/source/io.rst index 01795f6a4a9bf..54b180a47a0a0 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -151,7 +151,7 @@ They can take a number of arguments: - ``error_bad_lines``: if False then any lines causing an error will be skipped :ref:`bad lines <io.bad_lines>` - ``...
closes #3512
https://api.github.com/repos/pandas-dev/pandas/pulls/5010
2013-09-27T19:58:31Z
2013-09-28T01:36:18Z
null
2013-09-29T02:19:55Z
API: Remove deprecated read_clipboard/to_clipboard/ExcelFile/ExcelWriter from pandas.io.parsers (GH3717)
diff --git a/doc/source/api.rst b/doc/source/api.rst index 28c1515e93bc5..8dcf9c0f52de4 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -31,6 +31,15 @@ Flat File read_table read_csv read_fwf + +Clipboard +~~~~~~~~~ + +.. currentmodule:: pandas.io.clipboard + +.. autosummary:: + :toctree: gener...
closes #3717
https://api.github.com/repos/pandas-dev/pandas/pulls/5009
2013-09-27T19:21:02Z
2013-09-27T19:55:18Z
2013-09-27T19:55:18Z
2014-07-16T08:31:45Z
ENH: Support for "52โ€“53-week fiscal year" / "4โ€“4โ€“5 calendar" and LastWeekOfMonth DateOffset
diff --git a/doc/source/release.rst b/doc/source/release.rst index ed1834f14fc2e..a2015a3b361ac 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -62,7 +62,8 @@ New features - Auto-detect field widths in read_fwf when unspecified (:issue:`4488`) - ``to_csv()`` now outputs datetime objects accord...
Closes #4511 and #4637 - Added `LastWeekOfMonth` DateOffset #4637 - Added `FY5253`, and `FY5253Quarter` DateOffsets #4511 - Improved error handling in `get_freq_code`, `_period_str_to_code` and `_base_and_stride` - Fix issue with datetime - Timestamp
https://api.github.com/repos/pandas-dev/pandas/pulls/5004
2013-09-27T03:55:08Z
2013-10-22T20:37:52Z
2013-10-22T20:37:52Z
2014-06-12T15:33:59Z
BUG: wrong index name during read_csv if using usecols
diff --git a/doc/source/release.rst b/doc/source/release.rst index ce08a1ca0a175..056292322c297 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -480,6 +480,7 @@ Bug Fixes - Fixed wrong check for overlapping in ``DatetimeIndex.union`` (:issue:`4564`) - Fixed conflict between thousands separator...
Closes #4201 If user passes usecols and not names, then ensure that the inferred names refer to the used columns, not the document's columns.
https://api.github.com/repos/pandas-dev/pandas/pulls/5003
2013-09-27T03:26:01Z
2013-09-27T12:39:31Z
2013-09-27T12:39:31Z
2014-07-29T17:20:31Z
API: Remove set_printoptions/reset_printoptions (:issue:3046)
diff --git a/doc/source/basics.rst b/doc/source/basics.rst index 7d2555e8cba81..b167b00b58ef1 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -983,7 +983,7 @@ Methods like ``replace`` and ``findall`` take regular expressions, too: s3.str.replace('^.a|dog', 'XX-XX ', case=False) The method ``mat...
closes #3046 closes #3215
https://api.github.com/repos/pandas-dev/pandas/pulls/5001
2013-09-26T21:24:22Z
2013-09-27T00:36:48Z
2013-09-27T00:36:48Z
2014-06-14T13:53:48Z
API: Remove deprecated Factor (GH3650)
diff --git a/doc/source/release.rst b/doc/source/release.rst index bd3fbf53de039..8ba0574df97cb 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -234,6 +234,7 @@ API Changes Indexing on other index types are preserved (and positional fallback for ``[],ix``), with the exception, that floating poi...
closes #3650
https://api.github.com/repos/pandas-dev/pandas/pulls/5000
2013-09-26T21:21:26Z
2013-09-26T21:22:21Z
2013-09-26T21:22:21Z
2014-06-14T18:21:49Z
added halflife to exponentially weighted moving functions
diff --git a/doc/source/computation.rst b/doc/source/computation.rst index 207e2796c468d..85c6b88d740da 100644 --- a/doc/source/computation.rst +++ b/doc/source/computation.rst @@ -453,15 +453,16 @@ average as y_t = (1 - \alpha) y_{t-1} + \alpha x_t One must have :math:`0 < \alpha \leq 1`, but rather than pass ...
Currently for the exponentially weighted moving functions (ewma, ewmstd, ewmvol, ewmvar, ewmcov) there are two ways (span, center of mass) to specify how fast the exponential decay is. It would be nice to support a "half life" option as well. The half life is basically just the number of periods in which the exponenti...
https://api.github.com/repos/pandas-dev/pandas/pulls/4998
2013-09-26T19:47:13Z
2013-09-29T17:51:40Z
2013-09-29T17:51:40Z
2015-04-25T23:32:49Z
added halflife to exponentially weighted moving functions
diff --git a/doc/source/computation.rst b/doc/source/computation.rst index 207e2796c468d..85c6b88d740da 100644 --- a/doc/source/computation.rst +++ b/doc/source/computation.rst @@ -453,15 +453,16 @@ average as y_t = (1 - \alpha) y_{t-1} + \alpha x_t One must have :math:`0 < \alpha \leq 1`, but rather than pass ...
Currently for the exponentially weighted moving functions (ewma, ewmstd, ewmvol, ewmvar, ewmcov) there are two ways (span, center of mass) to specify how fast the exponential decay is. It would be nice to support a "half life" option as well. The half life is basically just the number of periods in which the exponent...
https://api.github.com/repos/pandas-dev/pandas/pulls/4997
2013-09-26T18:12:46Z
2013-09-26T19:45:15Z
null
2014-07-03T21:50:21Z
BUG: Fix appending when dtypes are not the same (error showing mixing float/np.datetime64 (GH4993)
diff --git a/doc/source/release.rst b/doc/source/release.rst index 0da7337977851..bd3fbf53de039 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -474,6 +474,7 @@ Bug Fixes explicitly passing labels (:issue:`3415`) - Fixed wrong check for overlapping in ``DatetimeIndex.union`` (:issue:`4564`) ...
closes #4993
https://api.github.com/repos/pandas-dev/pandas/pulls/4995
2013-09-26T13:59:00Z
2013-09-26T18:31:38Z
2013-09-26T18:31:38Z
2014-06-24T01:41:21Z
Axis slicer
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 4553e4804e98b..e94cb2827d0cf 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -9,7 +9,7 @@ from pandas.core.base import PandasObject from pandas.core.index import Index, MultiIndex, _ensure_index, InvalidIndexError import pandas.co...
The internal axis slicer. I overloaded `indexer` to be `start` when `stop` is passed in instead of having a separate indexer kwargs.
https://api.github.com/repos/pandas-dev/pandas/pulls/4994
2013-09-26T13:46:43Z
2014-02-18T20:06:02Z
null
2014-06-26T17:16:33Z
TST: fix indexing test for windows failure
diff --git a/pandas/tests/test_indexing.py b/pandas/tests/test_indexing.py index 0eab5ab834533..837acb90407ea 100644 --- a/pandas/tests/test_indexing.py +++ b/pandas/tests/test_indexing.py @@ -1532,7 +1532,7 @@ def test_floating_index(self): # related 236 # scalar/slicing of a float index - s...
Fixes new / remaining test failure in #4866
https://api.github.com/repos/pandas-dev/pandas/pulls/4992
2013-09-26T06:28:00Z
2013-09-26T10:49:39Z
2013-09-26T10:49:39Z
2014-07-16T08:31:19Z
BUG: Warn when dtypes differ in between chunks in csv parser
diff --git a/doc/source/release.rst b/doc/source/release.rst index ce08a1ca0a175..810889cbc4b26 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -480,6 +480,8 @@ Bug Fixes - Fixed wrong check for overlapping in ``DatetimeIndex.union`` (:issue:`4564`) - Fixed conflict between thousands separator...
Closes #3866
https://api.github.com/repos/pandas-dev/pandas/pulls/4991
2013-09-26T03:52:21Z
2013-09-29T19:28:11Z
2013-09-29T19:28:11Z
2014-07-03T21:50:15Z
CLN: fix py2to3 issues in categorical.py
diff --git a/pandas/core/categorical.py b/pandas/core/categorical.py index 0868ead2c1558..97ed0fdb0da30 100644 --- a/pandas/core/categorical.py +++ b/pandas/core/categorical.py @@ -2,6 +2,9 @@ import numpy as np +from pandas import compat +from pandas.compat import u + from pandas.core.algorithms import factorize...
https://api.github.com/repos/pandas-dev/pandas/pulls/4990
2013-09-26T02:18:37Z
2013-09-26T03:12:20Z
2013-09-26T03:12:19Z
2014-07-16T08:31:17Z
BUG: Bug in concatenation with duplicate columns across dtypes, GH4975
diff --git a/doc/source/release.rst b/doc/source/release.rst index 26529072f15bf..1f11ce414ae56 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -432,7 +432,7 @@ Bug Fixes - Bug in multi-indexing with a partial string selection as one part of a MultIndex (:issue:`4758`) - Bug with reindexing on...
partially fixed in #4771 closes #4975 ``` In [1]: w = DataFrame(np.random.randn(4,2), columns=["x", "y"]) In [2]: x = DataFrame(np.random.randn(4,2), columns=["x", "y"]) In [3]: y = DataFrame(np.random.randn(4,2), columns=["x", "y"]) In [4]: z = DataFrame(np.random.randn(4,2), columns=["x", "y"]) In [5]: dta = x....
https://api.github.com/repos/pandas-dev/pandas/pulls/4989
2013-09-25T23:53:33Z
2013-09-26T00:21:08Z
2013-09-26T00:21:08Z
2014-06-13T14:32:17Z
API: properly box numeric timedelta ops on Series (GH4984)
diff --git a/doc/source/release.rst b/doc/source/release.rst index a50a0f9c90b73..8d0f2c6a599e8 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -93,6 +93,7 @@ Improvements to existing features is frequency conversion. - Timedelta64 support ``fillna/ffill/bfill`` with an integer interpreted a...
closes #4984
https://api.github.com/repos/pandas-dev/pandas/pulls/4985
2013-09-25T19:10:51Z
2013-09-25T20:07:40Z
2013-09-25T20:07:40Z
2014-06-27T14:49:50Z
BUG: allow Timestamp comparisons on the left
diff --git a/doc/source/release.rst b/doc/source/release.rst index 3b5bb04344d25..74e54526cfe9a 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -487,6 +487,8 @@ Bug Fixes - Fix repr for DateOffset. No longer show duplicate entries in kwds. Removed unused offset fields. (:issue:`4638`) - F...
closes #4982
https://api.github.com/repos/pandas-dev/pandas/pulls/4983
2013-09-25T16:53:47Z
2013-09-27T15:53:27Z
2013-09-27T15:53:26Z
2014-08-18T17:03:33Z
CI/ENH: test against an older version of statsmodels
diff --git a/ci/install.sh b/ci/install.sh index 86226c530541c..357d962d9610d 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -62,19 +62,6 @@ if [ x"$FULL_DEPS" == x"true" ]; then echo "Installing FULL_DEPS" # for pytables gets the lib as well time sudo apt-get $APT_ARGS install libhdf5-serial-dev - - ...
https://api.github.com/repos/pandas-dev/pandas/pulls/4981
2013-09-25T14:56:18Z
2013-09-25T17:12:39Z
2013-09-25T17:12:39Z
2014-06-16T11:01:48Z
FIX: JSON support for non C locales
diff --git a/doc/source/release.rst b/doc/source/release.rst index 97150cbeb53a2..8584fe564f8b0 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -358,6 +358,8 @@ Bug Fixes dtypes, surfaced in (:issue:`4377`) - Fixed bug with duplicate columns and type conversion in ``read_json`` when ``o...
As reported in #4918. Tested on Linux and Windows.
https://api.github.com/repos/pandas-dev/pandas/pulls/4976
2013-09-25T02:08:52Z
2013-09-25T12:55:17Z
2013-09-25T12:55:17Z
2014-07-16T08:31:04Z
TST/CLN: pare down the eval test suite
diff --git a/pandas/computation/tests/test_eval.py b/pandas/computation/tests/test_eval.py index d5bcf85d4de03..7dc2ebc3d54e1 100755 --- a/pandas/computation/tests/test_eval.py +++ b/pandas/computation/tests/test_eval.py @@ -129,8 +129,8 @@ def setup_data(self): Series([1, 2, np.nan, np.na...
Current running time of the `eval` test suite (not including `query`) ``` $ nosetests pandas/computation/tests/test_eval.py 1 โ†ต ......../home/phillip/Documents/code/py/pandas/pandas/core/frame.py:3088: FutureWarning: TimeSeries broadcasting along DataFrame index by de...
https://api.github.com/repos/pandas-dev/pandas/pulls/4974
2013-09-24T22:27:33Z
2013-09-25T01:28:32Z
2013-09-25T01:28:32Z
2014-07-16T08:31:00Z
CLN: General print statement cleanup.
diff --git a/bench/io_roundtrip.py b/bench/io_roundtrip.py index e389481d1aabc..fa4e0755f40df 100644 --- a/bench/io_roundtrip.py +++ b/bench/io_roundtrip.py @@ -62,8 +62,8 @@ def rountrip_archive(N, K=50, iterations=10): pickle_time = timeit(pickle_f, iterations) / iterations print('pandas (pickle) %7.4f seco...
Changed all print statements in comments docstrings and supporting scripts to print "function calls".
https://api.github.com/repos/pandas-dev/pandas/pulls/4973
2013-09-24T21:23:23Z
2013-09-24T22:43:17Z
2013-09-24T22:43:17Z
2014-06-14T18:07:23Z
CLN: change print to print() in docs
diff --git a/doc/source/basics.rst b/doc/source/basics.rst index fad62c1a17deb..ce42ee3b7bc88 100644 --- a/doc/source/basics.rst +++ b/doc/source/basics.rst @@ -860,7 +860,7 @@ Thus, for example: .. ipython:: In [0]: for col in df: - ...: print col + ...: print(col) ...: iteritems @@ ...
closes #4967 `print` statements refactoring
https://api.github.com/repos/pandas-dev/pandas/pulls/4972
2013-09-24T20:06:41Z
2013-09-24T20:35:53Z
2013-09-24T20:35:53Z
2014-07-16T08:30:39Z
API: raise a TypeError on invalid comparison ops on Series (e.g. integer/datetime) GH4968
diff --git a/doc/source/release.rst b/doc/source/release.rst index 285cea7938f91..b95509f70f56f 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -225,6 +225,7 @@ API Changes - moved timedeltas support to pandas.tseries.timedeltas.py; add timedeltas string parsing, add top-level ``to_timedelta...
closes #4968
https://api.github.com/repos/pandas-dev/pandas/pulls/4970
2013-09-24T19:26:03Z
2013-09-24T20:28:02Z
2013-09-24T20:28:02Z
2014-07-02T07:32:26Z
BUG: fix skiprows option for python parser in read_csv
diff --git a/doc/source/release.rst b/doc/source/release.rst index 285cea7938f91..9c2032212e3c8 100644 --- a/doc/source/release.rst +++ b/doc/source/release.rst @@ -457,6 +457,7 @@ Bug Fixes weren't strings (:issue:`4956`) - Fixed ``copy()`` to shallow copy axes/indices as well and thereby keep separate me...
Closes #4382
https://api.github.com/repos/pandas-dev/pandas/pulls/4969
2013-09-24T19:11:39Z
2013-09-24T20:37:18Z
2013-09-24T20:37:17Z
2014-06-24T14:29:29Z
CLN: do not use mutable default arguments
diff --git a/pandas/tools/plotting.py b/pandas/tools/plotting.py index 18109e8c612b9..6631a3cf8c6f1 100644 --- a/pandas/tools/plotting.py +++ b/pandas/tools/plotting.py @@ -201,8 +201,8 @@ def use(self, key, value): def scatter_matrix(frame, alpha=0.5, figsize=None, ax=None, grid=False, - diagona...
https://api.github.com/repos/pandas-dev/pandas/pulls/4966
2013-09-24T18:26:28Z
2013-09-24T20:30:03Z
2013-09-24T20:30:03Z
2014-07-16T08:30:25Z
DOC: remote_data.rst: Fama/French punctuation
diff --git a/doc/source/remote_data.rst b/doc/source/remote_data.rst index bda532317ffe8..178ac0fce55dc 100644 --- a/doc/source/remote_data.rst +++ b/doc/source/remote_data.rst @@ -86,8 +86,8 @@ FRED Fama/French ----------- -Tthe dataset names are listed at `Fama/French Data Library -<http://mba.tuck.dartmouth.edu/...
https://api.github.com/repos/pandas-dev/pandas/pulls/4965
2013-09-24T16:24:26Z
2013-09-24T18:12:12Z
2013-09-24T18:12:12Z
2014-07-16T08:30:23Z