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: Index removes name when sliced | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 2db899b180627..2d9b3649b6f22 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -336,6 +336,8 @@ pandas 0.12
- Fixed bug in plotting that wasn't raising on invalid colormap for
matplotlib 1.1.1 (:issue:`4215`)
- Fixed the leg... | closes #4226
| https://api.github.com/repos/pandas-dev/pandas/pulls/4233 | 2013-07-13T18:05:44Z | 2013-07-14T13:32:53Z | 2013-07-14T13:32:53Z | 2014-06-30T17:57:37Z |
CLN/TST: clean up and raise on bs4 version and no tables | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 45335fa49aa23..f5d29c11e0589 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -106,6 +106,8 @@ pandas 0.12
- Added ``layout`` keyword to DataFrame.hist() for more customizable layout (:issue:`4050`)
- Timestamp.min and Timestamp... | closes #4214
| https://api.github.com/repos/pandas-dev/pandas/pulls/4232 | 2013-07-13T16:54:53Z | 2013-07-13T22:00:55Z | 2013-07-13T22:00:55Z | 2014-06-30T17:58:37Z |
BUG: raise on invalid colormap for older mpl | diff --git a/doc/source/release.rst b/doc/source/release.rst
index b1a4827c28e55..45335fa49aa23 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -331,6 +331,8 @@ pandas 0.12
- Fixed bug in ``Series.where`` where broadcasting a single element input vector
to the length of the series resulted i... | closes #4215
| https://api.github.com/repos/pandas-dev/pandas/pulls/4231 | 2013-07-13T15:58:46Z | 2013-07-13T18:19:43Z | 2013-07-13T18:19:43Z | 2014-07-16T08:19:08Z |
TST: little endian failure, GH4222 | diff --git a/pandas/io/stata.py b/pandas/io/stata.py
index 603924ac6a292..9257338cd4913 100644
--- a/pandas/io/stata.py
+++ b/pandas/io/stata.py
@@ -327,8 +327,16 @@ def _read_header(self):
typlist = [ord(self.path_or_buf.read(1)) for i in range(self.nvar)]
else:
typlist = [self.OLD_T... | closes #4222
| https://api.github.com/repos/pandas-dev/pandas/pulls/4228 | 2013-07-13T00:44:41Z | 2013-07-13T01:27:34Z | 2013-07-13T01:27:34Z | 2014-07-16T08:19:04Z |
BUG: Display the legend when calling plot with kind='density'. GH4216 | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 45335fa49aa23..2fbaea95d975a 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -333,6 +333,7 @@ pandas 0.12
inside the input (:issue:`4192`)
- Fixed bug in plotting that wasn't raising on invalid colormap for
matplotlib 1.... | See issue https://github.com/pydata/pandas/issues/4216
| https://api.github.com/repos/pandas-dev/pandas/pulls/4221 | 2013-07-12T12:32:13Z | 2013-07-13T22:59:56Z | 2013-07-13T22:59:56Z | 2014-07-06T07:46:21Z |
ENH: Treat 'Inf' as infinity in text parser | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 478e7375b0b30..496294fd86b19 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -41,6 +41,9 @@ pandas 0.13
- ``read_excel`` now supports an integer in its ``sheetname`` argument giving
the index of the sheet to read in (:issue:`... | Makes 'inf' checks case insensitive using strcasecmp
Fixes #4219.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4220 | 2013-07-12T00:54:27Z | 2013-07-26T12:03:37Z | 2013-07-26T12:03:37Z | 2014-06-14T11:07:09Z |
BLD: Use 'git describe' to generate the version string for dev versions | diff --git a/setup.py b/setup.py
index ec7f1628aada2..d66ac345aa61a 100755
--- a/setup.py
+++ b/setup.py
@@ -189,7 +189,7 @@ def build_extensions(self):
MAJOR = 0
MINOR = 12
MICRO = 0
-ISRELEASED = True
+ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = ''
@@ -199,19 +199,20 @@ def buil... | closes https://github.com/pydata/pandas/issues/4046
```
λ sudo python ./setup.py develop
...
Installed /home/user1/src/pandas
Processing dependencies for pandas==v0.12.0rc1-48-g9442eac
Searching for numpy==1.7.1
Best match: numpy 1.7.1
Adding numpy 1.7.1 to easy-install.pth file
λ python -c 'import pandas; print pand... | https://api.github.com/repos/pandas-dev/pandas/pulls/4218 | 2013-07-11T20:19:26Z | 2013-07-25T01:37:31Z | 2013-07-25T01:37:31Z | 2014-06-16T22:16:17Z |
DOC: remove savefig width parameter (#4203) | diff --git a/doc/source/10min.rst b/doc/source/10min.rst
index af84efb93bb5e..e3cfcc765d7c3 100644
--- a/doc/source/10min.rst
+++ b/doc/source/10min.rst
@@ -626,7 +626,7 @@ Plotting
ts = pd.Series(randn(1000), index=pd.date_range('1/1/2000', periods=1000))
ts = ts.cumsum()
- @savefig series_plot_basic.png w... | Closes #4203.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4217 | 2013-07-11T16:29:01Z | 2013-07-14T14:26:48Z | 2013-07-14T14:26:48Z | 2014-06-27T11:45:17Z |
BLD: pip 1.4 is coming, preempt issues with pytz install | diff --git a/setup.py b/setup.py
index 939931f08d2bd..28d2627ef2940 100755
--- a/setup.py
+++ b/setup.py
@@ -43,7 +43,7 @@
setuptools_kwargs = {'use_2to3': True,
'zip_safe': False,
'install_requires': ['python-dateutil >= 2',
- ... | https://github.com/pypa/pip/issues/974
2011k is the version shipped with precise, I hope that's conservative enough
to avoid disruption for existing users.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4210 | 2013-07-11T15:28:25Z | 2013-07-11T15:33:03Z | 2013-07-11T15:33:03Z | 2014-06-27T14:38:03Z |
PERF: add ix scalar get benchmark | diff --git a/vb_suite/indexing.py b/vb_suite/indexing.py
index 9f07cc6ed15c3..1264ae053ffca 100644
--- a/vb_suite/indexing.py
+++ b/vb_suite/indexing.py
@@ -61,23 +61,26 @@
bm_df_getitem2 = Benchmark(statement, setup,
name='datamatrix_getitem_scalar')
-setup = common_setup + """
-try:
- ... | https://api.github.com/repos/pandas-dev/pandas/pulls/4207 | 2013-07-11T13:33:27Z | 2013-07-11T13:33:33Z | 2013-07-11T13:33:33Z | 2014-07-16T08:18:50Z | |
DOC: more prominent HDFStore store docs about storer/table formats | diff --git a/doc/source/io.rst b/doc/source/io.rst
index 5e5943f066c3e..27488f3c5916d 100644
--- a/doc/source/io.rst
+++ b/doc/source/io.rst
@@ -1651,11 +1651,6 @@ Closing a Store, Context Manager
import os
os.remove('store.h5')
-
-These stores are **not** appendable once written (though you can simply
-remov... | closes #4189
| https://api.github.com/repos/pandas-dev/pandas/pulls/4206 | 2013-07-11T13:01:45Z | 2013-07-11T13:17:51Z | 2013-07-11T13:17:51Z | 2014-06-23T16:47:24Z |
BUG: convert nan to None before insert data into mysql | diff --git a/pandas/io/sql.py b/pandas/io/sql.py
index 11b139b620175..f413cb95afa76 100644
--- a/pandas/io/sql.py
+++ b/pandas/io/sql.py
@@ -9,6 +9,7 @@
from pandas.core.datetools import format as date_format
from pandas.core.api import DataFrame, isnull
+from pandas import notnull
#-----------------------------... | For issue #4199
| https://api.github.com/repos/pandas-dev/pandas/pulls/4200 | 2013-07-11T07:59:57Z | 2013-09-28T19:45:25Z | null | 2014-06-13T17:17:53Z |
BUG: (GH4192) Fixed buglet in the broadcasting logic in Series.where | diff --git a/doc/source/release.rst b/doc/source/release.rst
index a9e88f1341992..ada899e099aaa 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -324,6 +324,9 @@ pandas 0.12
(:issue:`4145`, :issue:`4146`)
- Fixed bug in the parsing of microseconds when using the ``format``
argument in `... | Fixed #4192
| https://api.github.com/repos/pandas-dev/pandas/pulls/4195 | 2013-07-10T17:08:06Z | 2013-07-10T18:52:48Z | 2013-07-10T18:52:48Z | 2014-08-11T01:31:56Z |
FIX disallow MultiIndex in Series constructor GH4187 | diff --git a/doc/source/release.rst b/doc/source/release.rst
index a965d92e5dbe3..d97a99426ff7d 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -199,6 +199,7 @@ pandas 0.12
- Fixed an esoteric excel reading bug, xlrd>= 0.9.0 now required for excel
support. Should provide python3 support (for... | fixes #4187 (at least the segfault part).
Constructing Series with a MultiIndex raises NotImplementedError, the option (to implement this) is to return `.to_series()` ?
| https://api.github.com/repos/pandas-dev/pandas/pulls/4190 | 2013-07-10T13:11:52Z | 2013-07-13T08:21:49Z | 2013-07-13T08:21:49Z | 2014-07-07T12:44:52Z |
TST: fix ujson tests failures on 32-bit | diff --git a/pandas/io/tests/test_json/test_ujson.py b/pandas/io/tests/test_json/test_ujson.py
index 23bd41d245f75..f838f8b7ea15c 100644
--- a/pandas/io/tests/test_json/test_ujson.py
+++ b/pandas/io/tests/test_json/test_ujson.py
@@ -96,7 +96,12 @@ def test_decimalDecodeTest(self):
sut = {u'a': 4.56}
e... | As pointed out by @lodagro [here](https://github.com/pydata/pandas/commit/a8d15bd4c6dae2c65ed4aa4b2f76c029b6358113#commitcomment-3521549) and [here](https://github.com/pydata/pandas/commit/a8d15bd4c6dae2c65ed4aa4b2f76c029b6358113#commitcomment-3521581) some of the ujson tests fail on 32-bit due to precision errors.
Th... | https://api.github.com/repos/pandas-dev/pandas/pulls/4186 | 2013-07-10T01:36:44Z | 2013-07-10T18:56:00Z | 2013-07-10T18:56:00Z | 2014-07-16T08:18:41Z |
TST: raise when no data are found when trying to dld multiple symbols | diff --git a/pandas/io/data.py b/pandas/io/data.py
index e5985c703f93f..e3b0af542bb41 100644
--- a/pandas/io/data.py
+++ b/pandas/io/data.py
@@ -312,7 +312,12 @@ def _dl_mult_symbols(symbols, start, end, chunksize, retry_count, pause,
'NaN.'.format(sym), SymbolWarning)
st... | closes #4182.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4184 | 2013-07-09T23:31:56Z | 2013-07-09T23:59:45Z | 2013-07-09T23:59:45Z | 2014-07-16T08:18:39Z |
ENH: drop_level argument for xs | diff --git a/doc/source/release.rst b/doc/source/release.rst
index b301dcb80445a..bddf720a6b72e 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -48,6 +48,7 @@ pandas 0.13
overlapping color and style arguments (:issue:`4402`)
- Significant table writing performance improvements in ``HDFStore`... | As discussed [here](http://stackoverflow.com/questions/17552997/how-to-update-a-subset-of-a-multiindexed-pandas-dataframe), xs usually remove the level which you are accessing. This commit allows you to explicitly say you don't want that (and want to keep the same levels in the result).
```
In [4]: df = DataFrame({'da... | https://api.github.com/repos/pandas-dev/pandas/pulls/4180 | 2013-07-09T17:24:54Z | 2013-08-27T12:18:58Z | 2013-08-27T12:18:58Z | 2014-06-14T07:25:56Z |
CLN: write the attributes in a HDFStore as strings | diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py
index fdb86c43b7160..43b3197667d2b 100644
--- a/pandas/io/pytables.py
+++ b/pandas/io/pytables.py
@@ -1622,8 +1622,8 @@ def __unicode__(self):
def set_object_info(self):
""" set my pandas type & version """
- self.attrs.pandas_type = self... | These strings are converted to bytes, previously these were written as unicode
| https://api.github.com/repos/pandas-dev/pandas/pulls/4178 | 2013-07-09T16:31:46Z | 2013-07-09T17:07:40Z | 2013-07-09T17:07:40Z | 2014-07-16T08:18:36Z |
TST: Do not skip MySQL tests on Travis. | diff --git a/.travis.yml b/.travis.yml
index 3d3d90eb47129..96dba262ebfb6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -40,6 +40,9 @@ install:
- echo "Waldo2"
- ci/install.sh
+before_script:
+ - mysql -e 'create database pandas_nosetest;'
+
script:
- echo "Waldo3"
- ci/script.sh
diff --git a/ci/require... | A first step for #4163
| https://api.github.com/repos/pandas-dev/pandas/pulls/4177 | 2013-07-09T16:01:36Z | 2013-07-10T18:26:39Z | 2013-07-10T18:26:39Z | 2014-07-16T08:18:34Z |
TST: remove double call to yahoo finance | diff --git a/pandas/io/tests/test_data.py b/pandas/io/tests/test_data.py
index 2f4185154b8e6..df1b292d9ba5f 100644
--- a/pandas/io/tests/test_data.py
+++ b/pandas/io/tests/test_data.py
@@ -117,8 +117,6 @@ def test_get_quote_series(self):
@network
def test_get_quote_string(self):
df = web.get_quote_ya... | closes #4174.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4176 | 2013-07-09T15:25:25Z | 2013-07-09T16:24:44Z | 2013-07-09T16:24:44Z | 2014-07-16T08:18:32Z |
DOC to_datetime warning about dayfirst strictness | diff --git a/pandas/tseries/tools.py b/pandas/tseries/tools.py
index c39f65f95d99f..dc3eb1183dd2b 100644
--- a/pandas/tseries/tools.py
+++ b/pandas/tseries/tools.py
@@ -61,6 +61,8 @@ def to_datetime(arg, errors='ignore', dayfirst=False, utc=None, box=True,
Errors are ignored by default (values left untouched)
... | cc #3341
Doesn't address the issue, but warns users about it in the docstring (it's already got a warning in the docs).
| https://api.github.com/repos/pandas-dev/pandas/pulls/4175 | 2013-07-09T14:49:40Z | 2013-07-09T15:41:56Z | 2013-07-09T15:41:56Z | 2014-07-16T08:18:31Z |
BLD: use the wheel url for scikits timeseries | diff --git a/ci/requirements-2.7.txt b/ci/requirements-2.7.txt
index 797066a0f1699..57acc459adc13 100644
--- a/ci/requirements-2.7.txt
+++ b/ci/requirements-2.7.txt
@@ -12,4 +12,4 @@ xlrd==0.9.2
patsy==0.1.0
html5lib==1.0b2
lxml==3.2.1
-http://downloads.sourceforge.net/project/pytseries/scikits.timeseries/0.91.3/sci... | was previously downloading from sourceforge, now uses the wheel
| https://api.github.com/repos/pandas-dev/pandas/pulls/4168 | 2013-07-09T01:02:38Z | 2013-07-09T14:29:05Z | 2013-07-09T14:29:04Z | 2014-07-16T08:18:29Z |
TST: to_datetime format tests | diff --git a/pandas/tseries/tests/test_timeseries.py b/pandas/tseries/tests/test_timeseries.py
index f952483f54a9a..07780b575fa95 100644
--- a/pandas/tseries/tests/test_timeseries.py
+++ b/pandas/tseries/tests/test_timeseries.py
@@ -793,17 +793,40 @@ def test_to_datetime_default(self):
xp = datetime(2001, 1, 1... | related to #4166
| https://api.github.com/repos/pandas-dev/pandas/pulls/4167 | 2013-07-09T00:34:35Z | 2013-07-09T14:49:19Z | 2013-07-09T14:49:19Z | 2014-07-16T08:18:27Z |
BUG: wrong parsing of microseconds with format arg (#4152) | diff --git a/doc/source/release.rst b/doc/source/release.rst
index f4d61e70e94b3..a965d92e5dbe3 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -321,7 +321,8 @@ pandas 0.12
object Series/Frame was not converting properly (:issue:`4119`)
- Fixed bugs in multi-index selection with column multi... | Closes #4152.
`fraction` was already in microseconds, so no need to multiply it with 1000000, which caused faulty parsing of dates with microseconds.
With this commit I get:
```
pandas version: 0.12.0.dev
Value to parse: 01-Apr-2011 00:00:01.978
datetime.strptime : 2011-04-01 00:00:01.978000
to_datetime, w/ou... | https://api.github.com/repos/pandas-dev/pandas/pulls/4166 | 2013-07-08T21:59:27Z | 2013-07-09T13:10:36Z | 2013-07-09T13:10:36Z | 2014-07-16T08:18:25Z |
DOC: increased width of text area (#4159) | diff --git a/doc/source/themes/nature_with_gtoc/static/nature.css_t b/doc/source/themes/nature_with_gtoc/static/nature.css_t
index ebfeb6e5a8b08..2e0bed922c1e6 100644
--- a/doc/source/themes/nature_with_gtoc/static/nature.css_t
+++ b/doc/source/themes/nature_with_gtoc/static/nature.css_t
@@ -30,7 +30,8 @@ div.documentw... | See #4159
This adds a minimum and maximum width of the text area (instead of one fixed value of, at the moment 600px), and I also increased the maximum value (from 600 to 840).
I took the values of the standard sphinx docs which are 780-1080 (minus 240 for the sidebar, in the standard sphinx docs the width is define... | https://api.github.com/repos/pandas-dev/pandas/pulls/4165 | 2013-07-08T20:51:57Z | 2013-07-10T18:55:26Z | 2013-07-10T18:55:26Z | 2014-06-17T19:31:27Z |
ENH: add expression evaluation functionality via eval | diff --git a/bench/bench_with_subset.R b/bench/bench_with_subset.R
new file mode 100644
index 0000000000000..69d0f7a9eec63
--- /dev/null
+++ b/bench/bench_with_subset.R
@@ -0,0 +1,53 @@
+library(microbenchmark)
+library(data.table)
+
+
+data.frame.subset.bench <- function (n=1e7, times=30) {
+ df <- data.frame(a=rno... | closes #3393
closes #2560
cc @jreback
# `eval` Roadmap
## PyTables
allows natural syntax for queries, with in-line variables allowed
some examples
`"ts>=Timestamp('2012-02-01') & users=['a','b','c']"`
`['A > 0']`
`'(index>df.index[3] & index<=df.index[6]) | string="bar"'`
```
dates=pd.date_range('20130101',perio... | https://api.github.com/repos/pandas-dev/pandas/pulls/4164 | 2013-07-08T20:32:22Z | 2013-09-16T18:59:14Z | 2013-09-16T18:59:14Z | 2014-07-14T06:34:32Z |
ENH: add expression evaluation functionality via eval | closes #3393.
cc @jreback
# `eval` Roadmap
## PyTables
allows natural syntax for queries, with in-line variables allowed
some examples
`"ts>=Timestamp('2012-02-01') & users=['a','b','c']"`
`['A > 0']`
```
dates=pd.date_range('20130101',periods=5)
'index>dates'
```
Todos:
- [ ] update docs / need new examples
- [ ... | https://api.github.com/repos/pandas-dev/pandas/pulls/4162 | 2013-07-08T18:16:45Z | 2013-07-08T20:11:27Z | 2013-07-08T20:11:27Z | 2013-09-17T20:53:44Z | |
WIP: use eval expression parsing as replacement for Term in HDFStore | diff --git a/pandas/__init__.py b/pandas/__init__.py
index a0edb397c28c1..5315fd770e796 100644
--- a/pandas/__init__.py
+++ b/pandas/__init__.py
@@ -29,6 +29,7 @@
from pandas.stats.api import *
from pandas.tseries.api import *
from pandas.io.api import *
+from pandas.computation.api import *
from pandas.util.test... | extension of @cpcloud #4037
allows natural syntax for queries, with in-line variables allowed
some examples
`"ts>=Timestamp('2012-02-01') & users=['a','b','c']"`
`['A > 0']`
```
dates=pd.date_range('20130101',periods=5)
'index>dates'
```
Todos:
- [ ] update docs / need new examples
- [ ] API changes (disallow dict... | https://api.github.com/repos/pandas-dev/pandas/pulls/4155 | 2013-07-07T22:28:00Z | 2013-07-08T18:20:41Z | null | 2014-06-22T09:43:11Z |
DOC: Improve excel docs | diff --git a/doc/source/io.rst b/doc/source/io.rst
index bc15aa102dcec..f61eb54888d1c 100644
--- a/doc/source/io.rst
+++ b/doc/source/io.rst
@@ -1494,7 +1494,8 @@ any pickled pandas object (or any other pickled object) from file:
Excel files
-----------
-The ``read_excel`` method can read an Excel 2003 file using t... | I simply updated the docs to reflect that `xlrd` handles reading of both `.xls` and `.xlsx` files, and I updated docstrings affected functions by #4131 so that their docstrings stand on their own.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4154 | 2013-07-07T04:40:23Z | 2013-07-10T13:09:33Z | 2013-07-10T13:09:33Z | 2014-07-16T08:18:02Z |
ENH: add correct versions of numpy installs | diff --git a/.gitignore b/.gitignore
index 9a0794373cfdc..3da165e07c77c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,4 +36,5 @@ pandas/io/*.json
.idea/pandas.iml
.build_cache_dir
.vagrant
-*.whl
\ No newline at end of file
+*.whl
+**/wheelhouse/*
diff --git a/.travis.yml b/.travis.yml
index ff292767011cf..3d3d90e... | closes #4142.
should be able to finish up tomorrow, just need to put things on the server and
test
| https://api.github.com/repos/pandas-dev/pandas/pulls/4153 | 2013-07-07T04:38:21Z | 2013-07-08T04:15:07Z | 2013-07-08T04:15:07Z | 2014-07-16T08:17:58Z |
WPI: Eval with some PyTables support | diff --git a/pandas/__init__.py b/pandas/__init__.py
index a0edb397c28c1..5315fd770e796 100644
--- a/pandas/__init__.py
+++ b/pandas/__init__.py
@@ -29,6 +29,7 @@
from pandas.stats.api import *
from pandas.tseries.api import *
from pandas.io.api import *
+from pandas.computation.api import *
from pandas.util.test... | additional commits after @cpcloud eval branch
add some support to replace Term expressions in HDFStore with a direct expression parsing
e.g.
`store.select('columns=A & index>=df.index[0:4]')`
in theory should work
| https://api.github.com/repos/pandas-dev/pandas/pulls/4151 | 2013-07-07T01:42:44Z | 2013-07-07T13:41:34Z | null | 2013-07-07T13:41:34Z |
ENH: Melt with MultiIndex columns | diff --git a/doc/source/release.rst b/doc/source/release.rst
index f4d61e70e94b3..b827af2173412 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -77,6 +77,7 @@ pandas 0.12
to specify custom column names of the returned DataFrame (:issue:`3649`),
thanks @hoechenberger. If ``var_name`` is not... | No idea if there's actually a market for this, but anyhow:
```
In [1]: df = pd.DataFrame([[ 1.067683, -1.110463, 0.20867 ], [-1.321405, 0.368915, -1.055342], [-0.807333, 0.08298 , -0.873361]])
In [2]: df.columns = [list('ABC'), list('abc')]
In [3]: df.columns.names = ['CAP', 'low']
In [4]: df
Out[4]:
CAP ... | https://api.github.com/repos/pandas-dev/pandas/pulls/4150 | 2013-07-06T17:08:19Z | 2013-07-12T13:16:57Z | 2013-07-12T13:16:57Z | 2014-06-12T13:34:21Z |
TST: additional test case for GH4146 | diff --git a/pandas/tests/test_indexing.py b/pandas/tests/test_indexing.py
index 7cd31b8f04b3a..a4174c236c26a 100644
--- a/pandas/tests/test_indexing.py
+++ b/pandas/tests/test_indexing.py
@@ -1094,8 +1094,12 @@ def test_mi_access(self):
# GH 4146, not returning a block manager when selecting a unique index
... | https://api.github.com/repos/pandas-dev/pandas/pulls/4149 | 2013-07-06T13:27:51Z | 2013-07-06T13:43:13Z | 2013-07-06T13:43:13Z | 2014-07-16T08:17:52Z | |
BUG: (GH4145/4146) Fixed bugs in multi-index selection with column multi index duplicates | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 7a271688c318b..dce1a25cf434b 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -318,6 +318,8 @@ pandas 0.12
iterated over when regex=False (:issue:`4115`)
- Fixed bug in ``convert_objects(convert_numeric=True)`` where a mixed n... | closes #4145, #4146
```
In [1]: data = """h1 main h3 sub h5
...: 0 a A 1 A1 1
...: 1 b B 2 B1 2
...: 2 c B 3 A1 3
...: 3 d A 4 B2 4
...: 4 e A 5 B2 5
...: 5 f B 6 A2 6"""
In [2]: df = pd.read_csv(StringIO(data),sep='\s+',index_col=0)
In [3]: d... | https://api.github.com/repos/pandas-dev/pandas/pulls/4148 | 2013-07-06T13:03:12Z | 2013-07-06T13:21:40Z | 2013-07-06T13:21:40Z | 2014-06-15T09:47:51Z |
ENH melt uses column name if available | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 7a271688c318b..a2f2d5308ff4d 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -75,13 +75,14 @@ pandas 0.12
- Simplified the API and added a describe method to Categorical
- ``melt`` now accepts the optional parameters ``var_name... | Currently melt allows you to manually specify the val_name and var_name, this changes the default behaviour to grab the column name if one is available.
```
In [1]: df = pd.DataFrame({'a': {0: 1.0676829999999999, 1: -1.3214049999999999, 2: -0.80733299999999997}, 'b': {0: -1.110463, 1: 0.36891499999999999, 2: 0.0829799... | https://api.github.com/repos/pandas-dev/pandas/pulls/4144 | 2013-07-06T00:08:11Z | 2013-07-06T13:42:08Z | 2013-07-06T13:42:08Z | 2014-06-13T05:42:28Z |
BLD: add SITE_PKG_DIR back in and fix numpy 1.6.1 install | diff --git a/ci/install.sh b/ci/install.sh
index 4795ac8f4f59d..a6fe57818a376 100755
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -23,8 +23,9 @@ pip Install -I https://bitbucket.org/pypa/setuptools/downloads/setuptools-0.8b6.
pip install wheel
# comment this line to disable the fetching of wheel files
-PIP_ARGS+=" -I... | closes #4142 .
| https://api.github.com/repos/pandas-dev/pandas/pulls/4143 | 2013-07-05T23:00:45Z | 2013-07-06T02:24:13Z | null | 2013-07-25T03:52:00Z |
BLD: install pip serially | diff --git a/ci/install.sh b/ci/install.sh
index 54de404854af8..4795ac8f4f59d 100755
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -53,8 +53,9 @@ if [ x"$FULL_DEPS" == x"true" ] ; then
fi
# Hard Deps
-time pip install $PIP_ARGS nose python-dateutil pytz>=2013a
-time pip install $PIP_ARGS cython==0.19.1
+for dep in nos... | closes #4132.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4141 | 2013-07-05T20:50:54Z | 2013-07-05T22:38:54Z | 2013-07-05T22:38:54Z | 2014-07-16T08:17:43Z |
ENH: Google BigQuery IO Module | diff --git a/ci/requirements-2.6.txt b/ci/requirements-2.6.txt
index 5038b9e2b6552..60a8b57e72907 100644
--- a/ci/requirements-2.6.txt
+++ b/ci/requirements-2.6.txt
@@ -4,3 +4,4 @@ python-dateutil==1.5
pytz==2013b
http://www.crummy.com/software/BeautifulSoup/bs4/download/4.2/beautifulsoup4-4.2.0.tar.gz
html5lib==1.0... | This module adds Google BigQuery functionality to the pandas project. The work is based on the existing sql.py and ga.py, providing methods to query a BigQuery database and read the results into a pandas DataFrame.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4140 | 2013-07-05T18:00:00Z | 2013-10-09T00:28:28Z | null | 2014-06-17T19:42:26Z |
BUG: Make ExcelFile.parse pass kwds to TextParser | diff --git a/pandas/io/excel.py b/pandas/io/excel.py
index f61db447f2cfc..03b547fcd47b7 100644
--- a/pandas/io/excel.py
+++ b/pandas/io/excel.py
@@ -126,7 +126,8 @@ def parse(self, sheetname, header=0, skiprows=None, skip_footer=0,
na_values=na_values,
... | Fixes #4131
| https://api.github.com/repos/pandas-dev/pandas/pulls/4139 | 2013-07-05T17:06:56Z | 2013-07-06T13:01:17Z | 2013-07-06T13:01:17Z | 2014-07-16T08:17:42Z |
BUG: series timedelta arithmetic is not being converted to ns with numpy 1.6 | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 95ce03a858570..0eafd33d58521 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -135,6 +135,8 @@ pandas 0.13
- Raise on set indexing with a Panel and a Panel as a value which needs alignment (:issue:`3777`)
- frozenset objects now... | closes #4135.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4138 | 2013-07-05T16:55:36Z | 2013-08-12T22:45:33Z | null | 2014-06-13T02:24:25Z |
BUG: period idx str map incorrectly returns a str repr of itself when ind.map(str) is called | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 7c09c2a6f16ac..62d3201eb3a58 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -48,6 +48,8 @@ pandas 0.13
with a different block ordering (:issue:`4096`)
- The ``by`` argument now works correctly with the ``layout`` argument
... | https://api.github.com/repos/pandas-dev/pandas/pulls/4136 | 2013-07-05T16:07:44Z | 2013-07-25T14:11:10Z | 2013-07-25T14:11:10Z | 2014-06-21T20:41:46Z | |
BLD: use wheel packages to reduce travis-ci build times. | diff --git a/.gitignore b/.gitignore
index f12847a80edaf..9a0794373cfdc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,3 +35,5 @@ pandas/io/*.json
.idea/pandas.iml
.build_cache_dir
+.vagrant
+*.whl
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
index 30f09deefd93a..ff292767011cf 100644
--- a/.t... | Roughly from 40 minutes to 13 minutes.
Before: https://travis-ci.org/pydata/pandas/builds/8738816
After: https://travis-ci.org/y-p/pandas/builds/8749214
The existing build cache system for 2to3 and cythonized caching can knock this
down much more, but it's more fragile and part of the reason the previous attempt
ultim... | https://api.github.com/repos/pandas-dev/pandas/pulls/4128 | 2013-07-04T23:24:22Z | 2013-07-04T23:34:56Z | 2013-07-04T23:34:56Z | 2014-07-16T08:17:35Z |
fix typo - change conn to con | diff --git a/pandas/io/sql.py b/pandas/io/sql.py
index 68dff479a5015..1794bda20d2fc 100644
--- a/pandas/io/sql.py
+++ b/pandas/io/sql.py
@@ -177,7 +177,7 @@ def write_frame(frame, name, con, flavor='sqlite', if_exists='fail', **kwargs):
----------
frame: DataFrame
name: name of SQL table
- conn: an op... | Noticed a typo in the documentation of `write_frame`.
Method def has `con` while documentation had `conn`.
`def write_frame(frame, name, con, flavor='sqlite', if_exists='fail', **kwargs):`
| https://api.github.com/repos/pandas-dev/pandas/pulls/4127 | 2013-07-04T16:33:39Z | 2013-07-05T13:01:31Z | 2013-07-05T13:01:31Z | 2014-07-16T08:17:34Z |
CLN: Small fix to clean_pyc task | diff --git a/Makefile b/Makefile
index 5349443ed477f..77342089365f0 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ clean: clean_pyc
-find . -name '*.so' -exec rm {} \;
clean_pyc:
- -find . -name '*.pyc' -or -name '*.pyo' -exec rm {} \;
+ -find . -name '*.pyc' -exec rm {} \; -or -name '*.pyo' -exec rm {} \;
... | The previous `clean_pyc` wasn't actually removing `*.pyc` files - apparently each branch of find needs its own exec (I guess?). Anyways this works now.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4124 | 2013-07-04T14:08:37Z | 2013-07-04T16:02:45Z | 2013-07-04T16:02:45Z | 2014-07-16T08:17:33Z |
BUG/TST: test fixes for windows compat | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index cc25d7e066e30..401a7746953cb 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -2206,7 +2206,10 @@ def _sanitize_column(self, key, value):
'length of index')
if not isinstance(value,... | closes #4122
| https://api.github.com/repos/pandas-dev/pandas/pulls/4123 | 2013-07-04T13:25:26Z | 2013-07-04T15:11:52Z | 2013-07-04T15:11:52Z | 2014-06-13T11:22:37Z |
BUG: GH4119 Fixed bug in convert_objects(convert_numeric=True) where a mixed numeric and object not converting | diff --git a/doc/source/release.rst b/doc/source/release.rst
index a7469ba2e707b..7a271688c318b 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -316,6 +316,8 @@ pandas 0.12
- Better error messages on inserting incompatible columns to a frame (:issue:`4107`)
- Fixed bug in ``DataFrame.replace``... | closes #4119
| https://api.github.com/repos/pandas-dev/pandas/pulls/4120 | 2013-07-03T21:37:43Z | 2013-07-03T23:43:15Z | 2013-07-03T23:43:15Z | 2014-07-16T08:17:29Z |
BUG: fix replace bug when a nested dict was passed | diff --git a/doc/source/release.rst b/doc/source/release.rst
index d410f39da3ab9..a7469ba2e707b 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -314,6 +314,8 @@ pandas 0.12
- Fix bug where ``HDFStore`` will fail to append because of a different block
ordering on-disk (:issue:`4096`)
- Bet... | closes #4115.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4117 | 2013-07-03T16:08:37Z | 2013-07-03T18:59:43Z | 2013-07-03T18:59:42Z | 2014-07-16T08:17:27Z |
CLN/TST: cleanup exception message testing by replacing with assertRaisesRegexp | diff --git a/pandas/tests/test_frame.py b/pandas/tests/test_frame.py
index a8a435e3bb660..eccdb53ff6764 100644
--- a/pandas/tests/test_frame.py
+++ b/pandas/tests/test_frame.py
@@ -25,10 +25,12 @@
from pandas import date_range
import pandas as pd
from pandas.io.parsers import read_csv
+from pandas.parser import CPar... | .
| https://api.github.com/repos/pandas-dev/pandas/pulls/4114 | 2013-07-03T15:24:37Z | 2013-07-03T16:27:43Z | 2013-07-03T16:27:43Z | 2014-07-16T08:17:25Z |
BUG: make sure fig is not doubled when passing by to series.hist | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 322c4541b5760..b13a6daf3da5c 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -435,6 +435,8 @@ Bug Fixes
- Bug in getitem with a duplicate index when using where (:issue:`4879`)
- Fix Type inference code coerces float column int... | closes #4112.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4113 | 2013-07-03T13:56:31Z | 2013-09-22T13:32:57Z | 2013-09-22T13:32:57Z | 2014-06-15T15:35:14Z |
CLN: use how="all" in data.py so that things that are not nan in other columns are kept | diff --git a/pandas/io/data.py b/pandas/io/data.py
index 2d91bd4cd383c..e5985c703f93f 100644
--- a/pandas/io/data.py
+++ b/pandas/io/data.py
@@ -757,7 +757,7 @@ def get_near_stock_price(self, above_below=2, call=True, put=False,
get_range = slice(start_index - above_below,
... | https://api.github.com/repos/pandas-dev/pandas/pulls/4111 | 2013-07-03T13:25:51Z | 2013-07-03T14:02:47Z | 2013-07-03T14:02:47Z | 2014-07-16T08:17:21Z | |
ERROR: better error message reporting on inserting incompatible column to frame (GH4107) | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 5f2dd3df0c6a3..d410f39da3ab9 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -313,6 +313,7 @@ pandas 0.12
(:issue:`4089`)
- Fix bug where ``HDFStore`` will fail to append because of a different block
ordering on-disk (:i... | closes #4107
| https://api.github.com/repos/pandas-dev/pandas/pulls/4108 | 2013-07-02T23:31:31Z | 2013-07-03T00:04:38Z | 2013-07-03T00:04:38Z | 2014-07-16T08:17:18Z |
ENH: add dropna argument to pivot_table | diff --git a/doc/source/release.rst b/doc/source/release.rst
index facf753ced9a0..bf3b2ace62908 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -72,6 +72,7 @@ pandas 0.12
- support python3 (via ``PyTables 3.0.0``) (:issue:`3750`)
- Add modulo operator to Series, DataFrame
- Add ``date`` m... | fixes #3820
```
a = np.array(['foo', 'foo', 'foo', 'bar', 'bar', 'foo', 'foo'], dtype=object)
b = np.array(['one', 'one', 'two', 'one', 'two', 'two', 'two'], dtype=object)
c = np.array(['dull', 'dull', 'dull', 'dull', 'dull', 'shiny', 'shiny'], dtype=object)
In [11]: pd.crosstab(a, [b, c], rownames=['a'], colnames=['... | https://api.github.com/repos/pandas-dev/pandas/pulls/4106 | 2013-07-02T18:16:57Z | 2013-07-10T13:20:05Z | 2013-07-10T13:20:05Z | 2014-07-16T08:17:15Z |
ENH: allow hist to take a string "by" argument | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 444f25e8662bd..4a0e567eb3c82 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -128,6 +128,8 @@ Improvements to existing features
- ``read_stata`` now accepts Stata 13 format (:issue:`4291`)
- ``ExcelWriter`` and ``ExcelFile`` ca... | closes #4103.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4105 | 2013-07-02T16:23:21Z | 2013-09-27T21:32:37Z | null | 2013-09-27T21:32:37Z |
ENH: allow layout for grouped DataFrame histograms | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 54fa4d30bac0a..7c09c2a6f16ac 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -46,6 +46,8 @@ pandas 0.13
- ``HDFStore`` raising an invalid ``TypeError`` rather than ``ValueError`` when appending
with a different block orderi... | Also remove the slow decorator for tests that take < 100 ms time
closes #4102.
closes #4194.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4104 | 2013-07-02T15:59:06Z | 2013-07-25T13:33:03Z | 2013-07-25T13:33:03Z | 2014-06-27T11:41:44Z |
pep8 cleanup | diff --git a/pandas/tools/tests/test_pivot.py b/pandas/tools/tests/test_pivot.py
index e333691b1e6d2..d83fb34c209b8 100644
--- a/pandas/tools/tests/test_pivot.py
+++ b/pandas/tools/tests/test_pivot.py
@@ -53,7 +53,7 @@ def test_pivot_table(self):
def test_pivot_table_nocols(self):
df = DataFrame({'rows': ... | Minor pep8 cleanup.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4101 | 2013-07-02T08:15:53Z | 2013-07-20T20:14:47Z | null | 2013-10-02T21:04:21Z |
BUG: (GH 4096) block ordering is somewhat non-deterministic in HDFStore; reorder to the existing store | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 36e86629c385a..691c7312dde72 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -299,6 +299,8 @@ pandas 0.12
rewritten in an incompatible way (:issue:`4062`, :issue:`4063`)
- Fixed bug where sharex and sharey were not being pass... | closes #4096
| https://api.github.com/repos/pandas-dev/pandas/pulls/4100 | 2013-07-01T20:34:46Z | 2013-07-01T21:27:26Z | 2013-07-01T21:27:26Z | 2014-07-16T08:17:10Z |
BUG: GH4098, HDFStore not recreating a datetime index properly when has a timezone | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 2aa6e1a80085f..36e86629c385a 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -52,7 +52,7 @@ pandas 0.12
- A ``filter`` method on grouped Series or DataFrames returns a subset of
the original (:issue:`3680`, :issue:`919`)
-... | closes #4098
| https://api.github.com/repos/pandas-dev/pandas/pulls/4099 | 2013-07-01T20:09:36Z | 2013-07-01T20:39:08Z | 2013-07-01T20:39:08Z | 2014-06-25T15:42:21Z |
CLN: Refactor string special methods | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 691c7312dde72..facf753ced9a0 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -175,8 +175,18 @@ pandas 0.12
``bs4`` + ``html5lib`` when lxml fails to parse. a list of parsers to try
until success is also valid
- more cons... | closes #4090, #3231
- The internal `pandas` class hierarchy has changed (slightly). The
previous `PandasObject` now is called `PandasContainer` and a new
`PandasObject` has become the baseclass for `PandasContainer` as well
as `Index`, `Categorical`, `GroupBy`, `SparseList`, and
`SparseArray` (+ their base clas... | https://api.github.com/repos/pandas-dev/pandas/pulls/4092 | 2013-07-01T02:47:14Z | 2013-07-02T01:42:28Z | 2013-07-02T01:42:28Z | 2014-06-14T19:01:58Z |
BUG: pass sharex and sharey in grouped_hist | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 513540698023f..2aa6e1a80085f 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -297,6 +297,8 @@ pandas 0.12
- Fixed bug where a 1xN DataFrame would barf on a 1xN mask (:issue:`4071`)
- Fixed running of ``tox`` under python3 where... | closes #4089
| https://api.github.com/repos/pandas-dev/pandas/pulls/4091 | 2013-07-01T01:26:14Z | 2013-07-01T03:28:07Z | 2013-07-01T03:28:07Z | 2014-07-16T08:16:48Z |
TST: test_fast.sh should not run network tests | diff --git a/test_fast.sh b/test_fast.sh
index 2ae736e952839..b390705f901ad 100755
--- a/test_fast.sh
+++ b/test_fast.sh
@@ -1 +1 @@
-nosetests -A "not slow" pandas --with-id $*
+nosetests -A "not slow and not network" pandas --with-id $*
| https://api.github.com/repos/pandas-dev/pandas/pulls/4086 | 2013-06-29T18:41:19Z | 2013-07-01T01:30:27Z | null | 2014-06-19T10:30:49Z | |
ENH: really really really fix the failing data.py tests | diff --git a/pandas/io/common.py b/pandas/io/common.py
index 1fc572dbf1a5e..33958ade2bcd6 100644
--- a/pandas/io/common.py
+++ b/pandas/io/common.py
@@ -1,9 +1,14 @@
-""" Common api utilities """
+"""Common IO api utilities"""
+import sys
import urlparse
-from pandas.util import py3compat
+import urllib2
+import zip... | I feel like a broken record
| https://api.github.com/repos/pandas-dev/pandas/pulls/4085 | 2013-06-29T17:52:20Z | 2013-07-01T01:29:02Z | 2013-07-01T01:29:02Z | 2014-07-16T08:16:40Z |
ENH: add the beginnings of an exception hierarchy specific to pandas | diff --git a/pandas/core/common.py b/pandas/core/common.py
index 96c567cbb6348..2b9de934afc67 100644
--- a/pandas/core/common.py
+++ b/pandas/core/common.py
@@ -4,7 +4,6 @@
import itertools
import re
-from datetime import datetime
from numpy.lib.format import read_array, write_array
import numpy as np
@@ -18,7 ... | https://api.github.com/repos/pandas-dev/pandas/pulls/4083 | 2013-06-29T15:54:47Z | 2013-08-03T04:43:36Z | null | 2014-06-19T18:56:21Z | |
BUG: GH4080, int conversion of underlying series to float needs updating in parent frame | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 7a271688c318b..893f753d0b7a2 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -318,6 +318,8 @@ pandas 0.12
iterated over when regex=False (:issue:`4115`)
- Fixed bug in ``convert_objects(convert_numeric=True)`` where a mixed n... | closes #4080
essentially a variation on #3970
here block consolidation and cache is not the issue,
rather the dtype of the series is int, and as a result of the update (directly on the series)
changes dtype to float (which is fine)
BUT the parent still has this in an Int Block
this PR essentially creates an Observe... | https://api.github.com/repos/pandas-dev/pandas/pulls/4081 | 2013-06-29T14:47:23Z | 2013-07-25T17:20:23Z | null | 2014-06-28T10:42:55Z |
TST: more cleaning of yahoo/google testing | diff --git a/pandas/io/data.py b/pandas/io/data.py
index 278fc2fc6dd4d..65f3cb22a2426 100644
--- a/pandas/io/data.py
+++ b/pandas/io/data.py
@@ -20,6 +20,10 @@
from pandas.io.parsers import TextParser
+class SymbolWarning(UserWarning):
+ pass
+
+
def DataReader(name, data_source=None, start=None, end=None,
... | fixes yet another bug with yahoo/google testing
| https://api.github.com/repos/pandas-dev/pandas/pulls/4079 | 2013-06-29T00:04:45Z | 2013-06-29T15:10:36Z | null | 2013-06-29T15:52:40Z |
Fix for #3970 cache invalidation bug | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index 97ceddb73a10d..9b1f144eeecbf 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -2100,7 +2100,15 @@ def _slice(self, slobj, axis=0, raise_on_error=False):
else:
mgr_axis = 0
- new_data = self._data.get_slice(slobj... | Also fixed stable sorting test failure that presents on some platforms
| https://api.github.com/repos/pandas-dev/pandas/pulls/4077 | 2013-06-28T17:56:09Z | 2013-06-28T18:40:04Z | 2013-06-28T18:40:03Z | 2013-06-28T18:41:53Z |
PERF: optimize insert_columns | diff --git a/pandas/core/internals.py b/pandas/core/internals.py
index c2af6e395a7e5..c1379dcc66766 100644
--- a/pandas/core/internals.py
+++ b/pandas/core/internals.py
@@ -87,7 +87,7 @@ def set_ref_items(self, ref_items, maybe_rename=True):
raise AssertionError('block ref_items must be an Index')
... | perf regression introduced in 1585aa4976ee492f05410b70014bad74cb7414b6
| https://api.github.com/repos/pandas-dev/pandas/pulls/4075 | 2013-06-28T16:05:24Z | 2013-06-28T17:30:14Z | 2013-06-28T17:30:14Z | 2014-07-16T08:16:36Z |
BUG: fix 1xN mask on 1xN frame | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 1edb44502221c..ae76324c0e848 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -293,6 +293,8 @@ pandas 0.12
:issue:`4028`, :issue:`4054`)
- ``Series.hist`` will now take the figure from the current environment if
one is no... | closes #4071.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4073 | 2013-06-28T14:54:32Z | 2013-06-28T18:41:48Z | 2013-06-28T18:41:48Z | 2014-07-02T22:48:55Z |
PERF: optimize iloc for unique case | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index 5f1ea00e421a8..97ceddb73a10d 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -1981,7 +1981,8 @@ def _ixs(self, i, axis=0, copy=False):
if isinstance(label, Index):
# a location index by definition
- ... | related #4017, #4018
optimize the iloc case (which should be the same for unique and non-unique indicies)
```
In [1]: df = DataFrame({'A' : [0.1] * 30000000, 'B' : [1] * 30000000})
In [6]: idx = np.array(range(30000)) * 99
In [7]: df2 = DataFrame({'A' : [0.1] * 10000000, 'B' : [1] * 10000000})
In [8]: df2 = concat... | https://api.github.com/repos/pandas-dev/pandas/pulls/4070 | 2013-06-28T13:18:24Z | 2013-06-28T15:35:50Z | 2013-06-28T15:35:50Z | 2014-07-01T20:48:51Z |
DOC: read_frame doc enhancement | diff --git a/pandas/io/sql.py b/pandas/io/sql.py
index 68dff479a5015..f444f55cd0573 100644
--- a/pandas/io/sql.py
+++ b/pandas/io/sql.py
@@ -148,6 +148,9 @@ def read_frame(sql, con, index_col=None, coerce_float=True, params=None):
con: DB connection object, optional
index_col: string, optional
column... | - added doc for parameter 'coerce_float' in io.sql.read_frame
| https://api.github.com/repos/pandas-dev/pandas/pulls/4068 | 2013-06-28T06:20:26Z | 2013-07-10T14:50:21Z | 2013-07-10T14:50:21Z | 2014-07-16T08:16:30Z |
TST/BUG: fix 2to3 import rewrite of import pickle | diff --git a/doc/source/release.rst b/doc/source/release.rst
index ae76324c0e848..18d5939d909ed 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -294,6 +294,8 @@ pandas 0.12
- ``Series.hist`` will now take the figure from the current environment if
one is not passed
- Fixed bug where a 1xN... | In pandas.io.pickle the following statement will not allow python to import
anything due to the following rewrite by 2to3
import pickle -> from . import pickle
This makes the import try to import itself ad infinitum and thus fails.
closes #4062
| https://api.github.com/repos/pandas-dev/pandas/pulls/4063 | 2013-06-27T19:53:37Z | 2013-06-28T19:47:40Z | 2013-06-28T19:47:40Z | 2014-06-16T02:42:59Z |
PERF: perf regressions on insertion of columns into frame (from GH4032) | diff --git a/pandas/core/internals.py b/pandas/core/internals.py
index 0fbadafeca617..c2af6e395a7e5 100644
--- a/pandas/core/internals.py
+++ b/pandas/core/internals.py
@@ -1788,6 +1788,9 @@ def insert(self, loc, item, value, allow_duplicates=False):
# new block
self._add_new_block(item, value... | inserting columns at the end was extremely slow
| https://api.github.com/repos/pandas-dev/pandas/pulls/4057 | 2013-06-27T13:53:22Z | 2013-06-27T15:09:46Z | 2013-06-27T15:09:46Z | 2014-07-16T08:16:26Z |
TST/BUG: fix failing data.py tests for good | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 0fa7b4b2ed5f2..114b5d749c85c 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -286,7 +286,11 @@ pandas 0.12
- Fix ``Series.clip`` for datetime series. NA/NaN threshold values will now throw ValueError (:issue:`3996`)
- Fixed ins... | closes #4028, #3982. for good.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4054 | 2013-06-27T13:03:15Z | 2013-06-28T14:21:53Z | 2013-06-28T14:21:53Z | 2014-06-13T01:01:55Z |
ENH: Use numexpr for all arithmetic operators + refactor arithmetic operations | diff --git a/doc/source/api.rst b/doc/source/api.rst
index 7e863a4429487..5e7f7cf1004be 100644
--- a/doc/source/api.rst
+++ b/doc/source/api.rst
@@ -248,12 +248,30 @@ Binary operator functions
:toctree: generated/
Series.add
- Series.div
- Series.mul
Series.sub
+ Series.mul
+ Series.div
+ Series... | Resolves #3765.
#### This is going to be split into two parts and then rebased on top of #3482.
Tasks:
- [x] Move arithmetic operations to separate file (e.g., `ops.py`).
- [x] Explore combining series/panel/frame operation methods.
- [x] Add rand, rxor, ror, etc...
This adds:
1. numexpr acceleration to `Series`, `Pa... | https://api.github.com/repos/pandas-dev/pandas/pulls/4051 | 2013-06-27T02:45:45Z | 2013-07-24T03:38:32Z | null | 2014-06-23T17:35:57Z |
TST: remove test_yahoo options test skipping | diff --git a/pandas/io/tests/test_yahoo.py b/pandas/io/tests/test_yahoo.py
index b85c981ad83fe..f2a55a4231c00 100644
--- a/pandas/io/tests/test_yahoo.py
+++ b/pandas/io/tests/test_yahoo.py
@@ -104,9 +104,6 @@ def test_options(self):
except ImportError:
raise nose.SkipTest
- ##### FAILING ... | closes #4028
just a reversal of the warnings - seem ok now
| https://api.github.com/repos/pandas-dev/pandas/pulls/4048 | 2013-06-26T18:26:14Z | 2013-06-26T19:17:51Z | 2013-06-26T19:17:51Z | 2014-06-30T12:16:55Z |
TST: fix failing data.py tests FOR GOOD | diff --git a/pandas/io/common.py b/pandas/io/common.py
index 3bd6dd5d74ba8..1fc572dbf1a5e 100644
--- a/pandas/io/common.py
+++ b/pandas/io/common.py
@@ -63,8 +63,8 @@ def get_filepath_or_buffer(filepath_or_buffer, encoding=None):
else:
errors = 'replace'
encoding = 'utf-8'... | closes #4028, #3982
| https://api.github.com/repos/pandas-dev/pandas/pulls/4047 | 2013-06-26T18:13:55Z | 2013-06-27T13:02:34Z | null | 2014-07-05T21:27:17Z |
DOC: Minor correction to DataReader data_source options | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 1edb44502221c..dfed47d33151a 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -293,6 +293,7 @@ pandas 0.12
:issue:`4028`, :issue:`4054`)
- ``Series.hist`` will now take the figure from the current environment if
one is no... | Documentation for DataReader had noted that Fama/French was "ff" for data_source, rather than "famafrench".
Modified DataReader slightly to accept "ff" anyway.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4044 | 2013-06-26T14:05:21Z | 2013-06-29T03:31:24Z | null | 2014-07-19T22:27:56Z |
BUG: (GH4032) Fixed insertion issue into DataFrame, after rename | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 7afe53cf33904..80061b6f49aed 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -252,8 +252,7 @@ pandas 0.11.1
- Fix running of bs4 tests when it is not installed (:issue:`3605`)
- Fix parsing of html table (:issue:`3606`)
- ``... | closes #4032
| https://api.github.com/repos/pandas-dev/pandas/pulls/4043 | 2013-06-26T13:01:35Z | 2013-06-26T14:02:11Z | 2013-06-26T14:02:11Z | 2014-07-16T08:16:15Z |
Ensure accurate encoding/decoding of big and small floats | diff --git a/pandas/io/tests/test_json/test_ujson.py b/pandas/io/tests/test_json/test_ujson.py
index 23bd41d245f75..c99415c715746 100644
--- a/pandas/io/tests/test_json/test_ujson.py
+++ b/pandas/io/tests/test_json/test_ujson.py
@@ -104,6 +104,30 @@ def test_decimalDecodeTestPrecise(self):
decoded = ujson.deco... | ujson has trouble with very big, and especially very small, floats:
esnme/ultrajson#69
esnme/ultrajson#83
esnme/ultrajson#90
From: https://github.com/pydata/pandas/pull/1263#issuecomment-20024006
```
>>> import ujson
>>> ujson.dumps(1e-40)
'0.0'
>>> ujson.dumps(1e-40, double_precision=17)
'0.0'
```
I believe this m... | https://api.github.com/repos/pandas-dev/pandas/pulls/4042 | 2013-06-26T05:17:01Z | 2013-07-20T01:45:17Z | null | 2014-06-19T16:05:37Z |
ENH: Initial implementation of calculation of astronomical Julian Date. | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 7871e92b7953b..c0600c161e06e 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -55,6 +55,10 @@ New features
- Hexagonal bin plots from ``DataFrame.plot`` with ``kind='hexbin'`` (:issue:`5478`)
- Added the ``sym_diff`` method to ``I... | - Added 'to_julian_date()' to Timestamp
- Added 'to_julian_date()' to DatetimeIndex
- Added tests for both methods.
Toying with the idea of using pandas for my astronomy and tidal analysis packages and I need the astronomical Julian Date. So here is an implementation and tests. I think I put these in the right place... | https://api.github.com/repos/pandas-dev/pandas/pulls/4041 | 2013-06-26T03:17:56Z | 2014-02-26T22:25:41Z | null | 2014-06-27T04:35:19Z |
ENH/BUG: Fix names, levels and labels handling in MultiIndex | diff --git a/doc/source/indexing.rst b/doc/source/indexing.rst
index 224925f144147..0cfc954e38f98 100644
--- a/doc/source/indexing.rst
+++ b/doc/source/indexing.rst
@@ -868,66 +868,6 @@ convert to an integer index:
df_new[(df_new['index'] >= 1.0) & (df_new['index'] < 2)]
-.. _indexing.class:
-
-Index objects
-... | This PR covers:
Fixes: #4202, #3714, #3742 (there are might be some others, but I've blanked on them...)
Bug fixes:
- `MultiIndex` preserves names as much as possible and it's now harder to overwrite index metadata by making changes down the line.
- `set_values` no longer messes up names.
External API Changes:
- Nam... | https://api.github.com/repos/pandas-dev/pandas/pulls/4039 | 2013-06-26T01:22:53Z | 2013-08-11T20:01:02Z | 2013-08-11T20:01:02Z | 2017-07-09T02:26:19Z |
CLN/DOC: update version numbers | diff --git a/doc/source/faq.rst b/doc/source/faq.rst
index 534ad576da0a7..04492210137ee 100644
--- a/doc/source/faq.rst
+++ b/doc/source/faq.rst
@@ -35,7 +35,7 @@ horizontal scrolling, auto-detection of width/height.
To appropriately address all these environments, the display behavior is controlled
by several option... | https://api.github.com/repos/pandas-dev/pandas/pulls/4038 | 2013-06-26T01:21:18Z | 2013-06-26T17:00:28Z | 2013-06-26T17:00:28Z | 2014-07-16T08:16:05Z | |
WIP: add top-level eval function | diff --git a/pandas/__init__.py b/pandas/__init__.py
index a0edb397c28c1..5315fd770e796 100644
--- a/pandas/__init__.py
+++ b/pandas/__init__.py
@@ -29,6 +29,7 @@
from pandas.stats.api import *
from pandas.tseries.api import *
from pandas.io.api import *
+from pandas.computation.api import *
from pandas.util.test... | closes #3393.
This is a ways from being mergeable but I thought I would put up the PR for people to play with and to get some other eyes on it. Tire-kick at will. A consolidated list of things to be completed to come.
# `eval` Roadmap
## Documentation
- [ ] enhancing performance section
- [x] `eval` docstring
- [ ] Wa... | https://api.github.com/repos/pandas-dev/pandas/pulls/4037 | 2013-06-26T00:34:16Z | 2013-07-08T18:16:51Z | null | 2014-06-12T09:31:29Z |
ENH: add rmod methods to frame and series | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index bf9d1cd7d30b9..43b4e8c3cf007 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -842,12 +842,14 @@ def __contains__(self, key):
sub = _arith_method(operator.sub, 'subtract', '-')
div = divide = _arith_method(lambda x, y: x / y, 'divid... | null | https://api.github.com/repos/pandas-dev/pandas/pulls/4035 | 2013-06-26T00:00:34Z | 2013-06-26T14:21:01Z | 2013-06-26T14:21:01Z | 2014-07-05T03:48:10Z |
Add layout keyword to dataframe.hist() | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 18d5939d909ed..513540698023f 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -100,6 +100,7 @@ pandas 0.12
(:issue:`3910`, :issue:`3914`)
- ``read_csv`` will now throw a more informative error message when a file
contains... | closes #4050. The current version defaults to a very sane default, but sometimes for presentation I prefer them all to be all in a row, or all in a column, or some non-balanced mix of the two. This keyword gives the flexibility for all of those options.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4031 | 2013-06-25T18:19:52Z | 2013-06-29T14:50:54Z | 2013-06-29T14:50:54Z | 2014-06-20T04:13:38Z |
BUG: Removed import nose on top of testing.py script | diff --git a/pandas/util/testing.py b/pandas/util/testing.py
index 5a583ca3ae7d9..19d7c707a0689 100644
--- a/pandas/util/testing.py
+++ b/pandas/util/testing.py
@@ -14,7 +14,6 @@
from distutils.version import LooseVersion
import urllib2
-import nose
from numpy.random import randn
import numpy as np
@@ -755,6 +7... | I'm having this error in master branch:
> > > import pandas
> > > Traceback (most recent call last):
> > > File "<stdin>", line 1, in <module>
> > > File "pandas/**init**.py", line 33, in <module>
> > > from pandas.util.testing import debug
> > > File "pandas/util/testing.py", line 17, in <module>
> > > ... | https://api.github.com/repos/pandas-dev/pandas/pulls/4030 | 2013-06-25T14:12:48Z | 2013-06-26T02:12:04Z | 2013-06-26T02:12:04Z | 2014-07-16T08:15:59Z |
Remove deprecation warning about 'display.height' option. | diff --git a/pandas/core/config_init.py b/pandas/core/config_init.py
index 6119de5af19e0..51e7d77b3156e 100644
--- a/pandas/core/config_init.py
+++ b/pandas/core/config_init.py
@@ -140,11 +140,6 @@
terminal and hence it is not possible to correctly detect the width.
"""
-pc_height_doc = """
-: int
- Deprecat... | Hi,
See the related issue at https://github.com/pydata/pandas/issues/4026
Best regards,
Damien
| https://api.github.com/repos/pandas-dev/pandas/pulls/4027 | 2013-06-25T08:47:33Z | 2013-07-28T21:05:10Z | null | 2014-07-10T08:53:26Z |
BUG: Make secondary_y work properly for bar plots GH3598 | diff --git a/doc/source/release.rst b/doc/source/release.rst
index b2c1e585fd90f..577d3a30c80f0 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -232,6 +232,7 @@ pandas 0.11.1
is a ``list`` or ``tuple``.
- Fixed bug where a time-series was being selected in preference to an actual column name... | As far as I'm aware this seems to work properly, but I'm not sure if this was done the previous way for a reason I don't understand.
Fixes: https://github.com/pydata/pandas/issues/3598
| https://api.github.com/repos/pandas-dev/pandas/pulls/4024 | 2013-06-25T05:06:27Z | 2013-06-26T13:38:27Z | 2013-06-26T13:38:27Z | 2014-06-25T08:05:07Z |
CLN: move tox_prll.sh to tox.sh | diff --git a/tox.ini b/tox.ini
index 2a9c454a29435..c0bf132a74e2a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -23,7 +23,6 @@ commands =
# TODO: --exe because of GH #761
{envbindir}/nosetests --exe pandas -A "not network"
# cleanup the temp. build dir created by the tox build
-# /bin/rm -rf {toxinidir}/buil... | We should only be using the parallel version of this.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4022 | 2013-06-25T03:52:50Z | 2013-06-26T00:01:04Z | null | 2013-07-25T03:52:47Z |
BUG: allow series to use gcf-style figures | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 114b5d749c85c..1edb44502221c 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -291,7 +291,8 @@ pandas 0.12
- Fixed failing tests in test_yahoo, test_google where symbols were not
retrieved but were being accessed (:issue:`3982... | cc @fonnesbeck
here's the original issue: https://github.com/pydata/pandas/commit/51cc9d9d21554701f70ef24392bd78a3da189335#commitcomment-3494266
| https://api.github.com/repos/pandas-dev/pandas/pulls/4021 | 2013-06-25T03:36:39Z | 2013-06-28T15:18:57Z | 2013-06-28T15:18:57Z | 2014-07-16T08:15:54Z |
BUG: GH4017, efficiently support non-unique indicies with iloc | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 917d91a14441e..817d029417aa1 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -212,6 +212,8 @@ pandas 0.12
- Extend ``reindex`` to correctly deal with non-unique indices (:issue:`3679`)
- ``DataFrame.itertuples()`` now works... | closes #4017
This was a bug because the iloc was dealing with a non-unique index (and was
reindexing which is not correct in this situation, instead can effectively
take)
```
In [1]: df= DataFrame({'A' : [0.1] * 300000, 'B' : [1] * 300000})
In [2]: idx = np.array(range(3000)) * 99
In [3]: expected = df.iloc[idx]
I... | https://api.github.com/repos/pandas-dev/pandas/pulls/4018 | 2013-06-25T00:14:19Z | 2013-06-26T18:15:38Z | 2013-06-26T18:15:38Z | 2014-06-12T13:14:25Z |
FIX groupby name without multiindex GH4014 | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 1525cc02268ae..b2c1e585fd90f 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -214,6 +214,7 @@ pandas 0.11.1
names (:issue:`3873`)
- Fixed bug in groupby with empty series referencing a variable before assignment. (:issue:... | Fixes #4014.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4015 | 2013-06-24T20:15:42Z | 2013-06-24T22:08:25Z | 2013-06-24T22:08:25Z | 2014-07-16T08:15:48Z |
CLN: Added *.dta to the .gitignore. Fixed typo in comment. Removed import. | diff --git a/.gitignore b/.gitignore
index 553d477dfce2a..f12847a80edaf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,6 +13,7 @@ MANIFEST
*.so
*.pyd
*.h5
+*.dta
pandas/version.py
doc/source/generated
doc/source/_static
@@ -33,4 +34,4 @@ pandas/io/*.json
.idea/libraries/sass_stdlib.xml
.idea/pandas.iml
-.bui... | CLN: Removed import after flake8 said it wasn't needed.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4010 | 2013-06-24T08:05:56Z | 2013-06-26T11:07:32Z | 2013-06-26T11:07:32Z | 2014-06-21T02:48:33Z |
TST: Change test_html to use stored data + mark other | diff --git a/pandas/io/tests/test_html.py b/pandas/io/tests/test_html.py
index 0157729044782..eaf06730a84c3 100644
--- a/pandas/io/tests/test_html.py
+++ b/pandas/io/tests/test_html.py
@@ -91,7 +91,6 @@ def test_to_html_compat(self):
assert_frame_equal(res, df)
@network
- @slow
def test_banklist... | Changed double decorated tests previously `network` and `slow` so they actually get run + stored usda_data such that the tests don't fail on network access.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4009 | 2013-06-24T01:52:30Z | 2013-07-03T12:50:07Z | 2013-07-03T12:50:07Z | 2014-06-18T13:38:53Z |
Basic JSON normalization/flattening | diff --git a/doc/source/io.rst b/doc/source/io.rst
index 9442f59425106..0fabfa7077a95 100644
--- a/doc/source/io.rst
+++ b/doc/source/io.rst
@@ -1230,6 +1230,37 @@ nanoseconds
import os
os.remove('test.json')
+.. _io.json_normalize:
+
+Normalization
+~~~~~~~~~~~~~
+
+.. versionadded:: 0.13.0
+
+Pandas provide... | closes #1067.
This isn't a fast function but has quite a bit of functionality. Take a look at the unit tests. Comments on the API welcome and this could use a few iterations. Various ad hoc things like concatenating "key paths" to metadata
| https://api.github.com/repos/pandas-dev/pandas/pulls/4007 | 2013-06-23T23:45:57Z | 2013-10-03T21:00:21Z | 2013-10-03T21:00:21Z | 2014-06-15T09:36:14Z |
Fix rename for MultiIndex columns DataFrame | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 97e9304e7e6b5..1525cc02268ae 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -277,6 +277,7 @@ pandas 0.11.1
specified (:issue:`3967`), python parser failing with ``chunksize=1``
- Fix index name not propogating when using ``sh... | DataFrame rename doesn't rename a MultiIndex column and it flattens the columns. Closes https://github.com/pydata/pandas/issues/3165 which is a fix for index but not columns.
| https://api.github.com/repos/pandas-dev/pandas/pulls/4004 | 2013-06-23T17:26:13Z | 2013-06-24T09:57:50Z | 2013-06-24T09:57:50Z | 2014-06-25T21:40:36Z |
CLN: clean up data.py | diff --git a/pandas/io/data.py b/pandas/io/data.py
index b0ee77f11a0a7..278fc2fc6dd4d 100644
--- a/pandas/io/data.py
+++ b/pandas/io/data.py
@@ -10,12 +10,12 @@
import datetime as dt
import urllib
import time
+from collections import defaultdict
from contextlib import closing
from urllib2 import urlopen
from zi... | closes #4001
closes #3982
closes #4028
| https://api.github.com/repos/pandas-dev/pandas/pulls/4002 | 2013-06-23T05:20:26Z | 2013-06-28T23:06:17Z | 2013-06-28T23:06:17Z | 2014-06-27T11:41:37Z |
CLN: fix python26 invalid exception | diff --git a/pandas/io/data.py b/pandas/io/data.py
index 03ccde6a2fcc1..21f69e2e7daf4 100644
--- a/pandas/io/data.py
+++ b/pandas/io/data.py
@@ -478,7 +478,7 @@ def get_data_fred(name=None, start=dt.datetime(2010, 1, 1),
except KeyError:
if data.ix[3].name[7:12] == 'Error':
raise Exception("F... | https://api.github.com/repos/pandas-dev/pandas/pulls/4000 | 2013-06-23T01:06:43Z | 2013-06-23T05:25:11Z | 2013-06-23T05:25:11Z | 2014-07-16T08:15:29Z | |
BUG: (GH3997) Fix for dropna=False in stack | diff --git a/doc/source/release.rst b/doc/source/release.rst
index df09d2f5a50ba..0c413b2b8eafb 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -274,6 +274,7 @@ pandas 0.11.1
- csv parsers would loop infinitely if ``iterator=True`` but no ``chunksize`` was
specified (:issue:`3967`), python ... | Fixes #3997
| https://api.github.com/repos/pandas-dev/pandas/pulls/3999 | 2013-06-22T21:31:01Z | 2013-06-23T09:20:03Z | 2013-06-23T09:20:03Z | 2014-06-24T17:55:06Z |
BUG: Use Series.where rather than np.where in clip | diff --git a/doc/source/release.rst b/doc/source/release.rst
index b2c1e585fd90f..7afe53cf33904 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -279,6 +279,7 @@ pandas 0.11.1
- Fix index name not propogating when using ``shift``
- Fixed dropna=False being ignored with multi-index stack (:issue:... | Closes #3996
| https://api.github.com/repos/pandas-dev/pandas/pulls/3998 | 2013-06-22T20:25:59Z | 2013-06-25T20:04:24Z | 2013-06-25T20:04:24Z | 2014-07-16T08:15:26Z |
BUG: invert_xaxis (negative tot_sec) triggers MilliSecondLocator (#3990) | diff --git a/doc/source/release.rst b/doc/source/release.rst
index a9e88f1341992..3799b0a8a24d6 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -324,6 +324,8 @@ pandas 0.12
(:issue:`4145`, :issue:`4146`)
- Fixed bug in the parsing of microseconds when using the ``format``
argument in `... | Solves issue #3990.
Negative timedelta for xaxis range will no longer trigger MilliSecondLocator.
| https://api.github.com/repos/pandas-dev/pandas/pulls/3991 | 2013-06-22T12:13:47Z | 2013-07-10T18:39:00Z | 2013-07-10T18:39:00Z | 2014-06-25T21:40:21Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.