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 |
|---|---|---|---|---|---|---|---|
FIX: division of Decimal would crash | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 3f510ce3d44c0..f77ff67320ca0 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -132,3 +132,5 @@ Bug Fixes
- Bug in unequal comparisons between a ``Series`` of dtype `"category"` and a scalar (e.g. `... | closes #9787
Decimal objects don't support dtype, so we exclude all objects from fill_zeros that do not support .dtype or .type and are not scalar.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9871 | 2015-04-13T16:20:01Z | 2015-04-14T13:27:50Z | null | 2015-04-14T13:27:50Z |
ENH: #9847, adding a "same" and "expand" param to StringMethods.split() | diff --git a/pandas/core/strings.py b/pandas/core/strings.py
index 6d20907373014..87169a5314643 100644
--- a/pandas/core/strings.py
+++ b/pandas/core/strings.py
@@ -624,6 +624,7 @@ def str_pad(arr, width, side='left', fillchar=' '):
def str_split(arr, pat=None, n=None, return_type='series'):
"""
+ Deprecated... | closes #9847
| https://api.github.com/repos/pandas-dev/pandas/pulls/9870 | 2015-04-13T15:55:29Z | 2015-05-09T15:31:37Z | null | 2015-05-09T15:31:37Z |
Period accepts datetime64 value | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index e1e930ee21efe..dda5a34a6d7db 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -49,6 +49,7 @@ Enhancements
- Allow conversion of values with dtype ``datetime64`` or ``timedelta64`` to strings usin... | Added support for `datetime64` value for Period. Fixes #9054.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9869 | 2015-04-13T15:28:38Z | 2015-04-14T14:26:45Z | null | 2015-04-14T14:26:45Z |
GH9570 allow timedelta string conversion without leading zero | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index e1e930ee21efe..dc6093b31633b 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -50,6 +50,8 @@ Enhancements
- Allow conversion of values with dtype ``datetime64`` or ``timedelta64`` to strings using ... | See https://github.com/pydata/pandas/issues/9570
This commit allows for the `Timedelta` class to take a construction like `Timedelta('0:00:00')` or `Timedelta('00:00:00')`.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9868 | 2015-04-13T14:26:00Z | 2015-04-13T16:34:46Z | 2015-04-13T16:34:46Z | 2015-04-13T16:34:46Z |
DOC/CLN: fixed bloolean indexing example, cleaned up typos | diff --git a/doc/source/indexing.rst b/doc/source/indexing.rst
index fc074802353ee..2eabc35fd831d 100644
--- a/doc/source/indexing.rst
+++ b/doc/source/indexing.rst
@@ -30,9 +30,9 @@ The axis labeling information in pandas objects serves many purposes:
In this section, we will focus on the final point: namely, how to ... | The boolean indexing example http://pandas.pydata.org/pandas-docs/version/0.16.0/indexing.html#boolean-indexing seems to be broken for a while. The variable `s` is being set in a much earlier part of the page and is not suitable for this example.
Also cleaned up a few minor typos.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9866 | 2015-04-13T02:46:35Z | 2015-04-13T07:28:03Z | 2015-04-13T07:28:03Z | 2015-04-13T19:04:07Z |
Fix for comparisons of categorical and an scalar not in categories | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index dc5e3ddcefc06..45c4c9b00c97c 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -123,3 +123,5 @@ Bug Fixes
- Bug in which ``SparseDataFrame`` could not take `nan` as a column name (:issue:`8822`)
... | Up to now, a comparison of categorical data and a scalar, which
is not in the categories would return `False` for all elements when
it should raise a `TypeError`, which it now does.
Also fix that `!=` comparisons would return `False` for all elements
when the more logical choice would be `True`.
Fixes the raised issu... | https://api.github.com/repos/pandas-dev/pandas/pulls/9864 | 2015-04-12T21:45:29Z | 2015-04-13T13:40:24Z | null | 2015-04-13T13:40:24Z |
DOC/CLN: fixed several typos in categorical.rst | diff --git a/doc/source/categorical.rst b/doc/source/categorical.rst
index d03e0fb117c5c..11e7fb0fd4117 100644
--- a/doc/source/categorical.rst
+++ b/doc/source/categorical.rst
@@ -23,11 +23,11 @@ Categorical Data
.. versionadded:: 0.15
.. note::
- While there was in `pandas.Categorical` in earlier versions, the... | https://api.github.com/repos/pandas-dev/pandas/pulls/9863 | 2015-04-12T18:54:33Z | 2015-04-12T21:08:15Z | 2015-04-12T21:08:15Z | 2015-04-13T19:06:46Z | |
BUG: secondary ax has incorrect right_ax property | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index dc5e3ddcefc06..11d5c9690f2e8 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -110,6 +110,7 @@ Bug Fixes
- Bug in ``DataFrame.plot(kind="hist")`` results in ``TypeError`` when ``DataFrame`` conta... | When `secondary_y` is enabled, twin axes are created as below:
- Assume current axes is `ax` (left ax)
- create `new_ax` (right ax) via `ax.twinx`
- Let `ax.right_ax` to specify `new_ax` (right ax)
- Let `new_ax.left_ax` to specify `ax` (left ax)
- Let `new_ax.right_ax` to specify `new_ax` (incorrect)
The last one is ... | https://api.github.com/repos/pandas-dev/pandas/pulls/9861 | 2015-04-11T23:27:43Z | 2015-04-14T14:25:56Z | null | 2015-04-14T14:28:42Z |
DOC: add more examples to StringMethods on Index | diff --git a/doc/source/text.rst b/doc/source/text.rst
index ee91ea3c166b6..f417f56f51fbc 100644
--- a/doc/source/text.rst
+++ b/doc/source/text.rst
@@ -37,6 +37,32 @@ the equivalent (scalar) built-in string methods:
idx.str.lstrip()
idx.str.rstrip()
+The string methods on Index are especially useful for clea... | as discussed in https://github.com/pydata/pandas/pull/9667
@jorisvandenbossche please take a look, thanks
| https://api.github.com/repos/pandas-dev/pandas/pulls/9858 | 2015-04-11T21:11:03Z | 2015-04-12T08:01:34Z | 2015-04-12T08:01:34Z | 2015-04-13T19:07:10Z |
BUG: plot(kind=hist) results in TypeError if it contains non-numeric data | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index ab57f1fb6ea10..a3fd8ae1b86fb 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -107,6 +107,7 @@ Bug Fixes
- Bug in plotting continuously using ``secondary_y`` may not show legend properly. (:issue... | ```
df = pd.DataFrame(np.random.rand(20, 5), columns=['A', 'B', 'C', 'D', 'E'])
df['C'] = ['A', 'B', 'C', 'D'] * 5
df['D'] = df['D'] * 100
df.plot(kind='hist')
# TypeError: cannot concatenate 'str' and 'float' objects
```
| https://api.github.com/repos/pandas-dev/pandas/pulls/9853 | 2015-04-11T12:24:14Z | 2015-04-11T15:18:00Z | 2015-04-11T15:18:00Z | 2015-04-11T15:58:20Z |
BUG/CLN: Repeated time-series plot may raise TypeError | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index b80e341d4156a..1750ec64025a7 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -108,6 +108,7 @@ Bug Fixes
- Bug in plotting continuously using ``secondary_y`` may not show legend properly. (:issue:`... | This repeated time-series plotting works:
```
import pandas.util.testing as tm
s1 = tm.makeTimeSeries()
s2 = s1[[0, 5, 10, 11, 12, 13, 14, 15]]
ax = s1.plot()
ax2 = s2.plot(style='g')
```

B... | https://api.github.com/repos/pandas-dev/pandas/pulls/9852 | 2015-04-11T12:18:15Z | 2015-04-12T13:39:44Z | 2015-04-12T13:39:44Z | 2015-04-18T14:26:06Z |
Fix for unequal comparisons of categorical and scalar | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index ab57f1fb6ea10..2cba928be5ab7 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -116,3 +116,7 @@ Bug Fixes
- Bug in ``read_csv`` and ``read_table`` when using ``skip_rows`` parameter if blank lines a... | Fixes: #9836
| https://api.github.com/repos/pandas-dev/pandas/pulls/9848 | 2015-04-10T14:30:38Z | 2015-04-11T20:06:52Z | null | 2015-05-11T22:21:16Z |
BUG: memory access bug in read_csv causing segfault | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index f5b158d717357..3ff2406220e35 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -91,6 +91,7 @@ Bug Fixes
- Fixed bug (:issue:`9542`) where labels did not appear properly in legend of ``DataFrame.pl... | closes https://github.com/pydata/pandas/issues/5664
the added test covers the original issue, though I cannot reproduce that on master; [the one mentioned in the comments](https://github.com/pydata/pandas/issues/5664#issuecomment-49332533) still segfaults on master (if repeated few times) and is fixed by this pr.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9846 | 2015-04-10T02:41:58Z | 2015-04-12T13:37:27Z | 2015-04-12T13:37:27Z | 2015-04-12T13:57:14Z |
BUG: raw_locales unreachable in util.testing.get_locales | diff --git a/pandas/tests/test_util.py b/pandas/tests/test_util.py
index 2e22b33dc769a..bb8bd3df96b71 100644
--- a/pandas/tests/test_util.py
+++ b/pandas/tests/test_util.py
@@ -79,6 +79,10 @@ def test_warning(self):
with tm.assert_produces_warning(FutureWarning):
self.assertNotAlmostEquals(1, 2)
... | Fixes #9744
| https://api.github.com/repos/pandas-dev/pandas/pulls/9845 | 2015-04-10T02:41:56Z | 2015-04-12T13:38:22Z | 2015-04-12T13:38:22Z | 2015-04-12T13:38:26Z |
DOC/CLN: Revise StringMethods docs | diff --git a/pandas/core/strings.py b/pandas/core/strings.py
index 6d20907373014..3506338afd9d4 100644
--- a/pandas/core/strings.py
+++ b/pandas/core/strings.py
@@ -27,19 +27,42 @@ def _get_array_list(arr, others):
def str_cat(arr, others=None, sep=None, na_rep=None):
"""
- Concatenate arrays of strings with... | Derived from #9773, #9667. Fix docstrings to meet what current `.str` accessors does.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9843 | 2015-04-09T14:54:56Z | 2015-05-01T16:56:23Z | 2015-05-01T16:56:23Z | 2015-05-04T02:56:30Z |
DOC: Fix release note for v0.16 | diff --git a/doc/source/whatsnew/v0.16.0.txt b/doc/source/whatsnew/v0.16.0.txt
index aa35434802799..f9bef3d9c7f4a 100644
--- a/doc/source/whatsnew/v0.16.0.txt
+++ b/doc/source/whatsnew/v0.16.0.txt
@@ -474,10 +474,11 @@ Other API Changes
- ``Series.values_counts`` and ``Series.describe`` for categorical data will now p... | Release note for v0.16 is not rendered properly.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9840 | 2015-04-09T13:41:17Z | 2015-04-09T15:12:51Z | 2015-04-09T15:12:51Z | 2015-04-11T13:09:45Z |
TST: Fix tests in TestGoogle | diff --git a/pandas/io/tests/test_data.py b/pandas/io/tests/test_data.py
index 70a25a45c0ad4..9b27d612cdeee 100644
--- a/pandas/io/tests/test_data.py
+++ b/pandas/io/tests/test_data.py
@@ -33,7 +33,7 @@ def assert_n_failed_equals_n_null_columns(wngs, obj, cls=SymbolWarning):
all_nan_cols = pd.Series(dict((k, pd.is... | Fixes the tests in data reader that will be run when the bug in #9744 is fixed.
This needs to be merged before I can fix #9744.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9839 | 2015-04-09T03:28:12Z | 2015-04-09T15:13:42Z | 2015-04-09T15:13:42Z | 2015-04-10T01:55:02Z |
BUG: DataFrame.where does not respect axis parameter when shape is symmetric | diff --git a/doc/source/whatsnew/v0.17.0.txt b/doc/source/whatsnew/v0.17.0.txt
index 14e185b5b2a26..94ae92811c4e6 100644
--- a/doc/source/whatsnew/v0.17.0.txt
+++ b/doc/source/whatsnew/v0.17.0.txt
@@ -88,6 +88,7 @@ Bug Fixes
- Bug in ``ExcelReader`` when worksheet is empty (:issue:`6403`)
+- Bug causing ``DataFram... | Fixes GH #9736.
The problem was that at the `Block` level, `where` and `putmask` did a lot of guessing about how the block and the other parameters needed to be transposed in order to align correctly. It guessed wrongly when the DataFrame was symmetric because the shapes match up in both directions. This change tries ... | https://api.github.com/repos/pandas-dev/pandas/pulls/9838 | 2015-04-09T02:29:07Z | 2015-08-18T11:20:12Z | null | 2015-08-18T12:09:34Z |
BUG: read_csv skips lines with initial whitespace + one non-space character | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 7166801b3fbf0..172f3f708d9a3 100755
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -120,6 +120,7 @@ Bug Fixes
- Bug in ``where`` causing incorrect results when upcasting was required (:issue:`9731`)
- ... | Fixes GH #9710
| https://api.github.com/repos/pandas-dev/pandas/pulls/9837 | 2015-04-09T01:20:03Z | 2015-04-28T01:02:18Z | null | 2015-04-28T10:30:23Z |
ERR: raise when index_col=True is passed | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index dcddcaaad36d0..9f989b2cf0ea9 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -96,3 +96,5 @@ Bug Fixes
- Fixed bug where ``DataFrame.plot()`` raised an error when both ``color`` and ``style`` key... | closes #9798
Add a check to see whether the `index_col` is `True`.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9835 | 2015-04-08T13:58:47Z | 2015-04-09T15:03:48Z | 2015-04-09T15:03:48Z | 2015-04-09T15:03:53Z |
BUG: skiprows doesn't handle blank lines properly when engine='c' | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index bd79d9d93fd04..54892a35462d5 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -88,3 +88,4 @@ Bug Fixes
- Bug in ``FloatArrayFormatter`` where decision boundary for displaying "small" floats in deci... | Fixes GH #9832
| https://api.github.com/repos/pandas-dev/pandas/pulls/9834 | 2015-04-08T12:54:05Z | 2015-04-08T18:05:47Z | 2015-04-08T18:05:47Z | 2015-09-19T00:38:21Z |
DOC: Clean up documentation for convert_objects | diff --git a/pandas/core/generic.py b/pandas/core/generic.py
index e05709d7a180f..cda3d1d82aa3f 100644
--- a/pandas/core/generic.py
+++ b/pandas/core/generic.py
@@ -2260,19 +2260,23 @@ def convert_objects(self, convert_dates=True, convert_numeric=False,
Parameters
----------
- convert_dates :... | https://api.github.com/repos/pandas-dev/pandas/pulls/9830 | 2015-04-07T12:34:08Z | 2015-04-07T13:01:56Z | 2015-04-07T13:01:56Z | 2015-09-19T00:38:05Z | |
Fixed bug #9733 where stat functions returned a python scalar for empty series | diff --git a/doc/source/whatsnew/v0.17.0.txt b/doc/source/whatsnew/v0.17.0.txt
index 13764543ec665..6b5ffded6c553 100644
--- a/doc/source/whatsnew/v0.17.0.txt
+++ b/doc/source/whatsnew/v0.17.0.txt
@@ -701,3 +701,5 @@ Bug Fixes
- Bug in ``iloc`` allowing memory outside bounds of a Series to be accessed with negative in... | closes #9733
| https://api.github.com/repos/pandas-dev/pandas/pulls/9829 | 2015-04-07T11:20:53Z | 2015-11-10T01:21:41Z | null | 2022-10-13T00:16:30Z |
BUG: complex is cast to float in sum with level arg | diff --git a/pandas/core/groupby.py b/pandas/core/groupby.py
index 6d98b3b99021b..8125f1de3ea28 100644
--- a/pandas/core/groupby.py
+++ b/pandas/core/groupby.py
@@ -25,7 +25,8 @@
notnull, _DATELIKE_DTYPES, is_numeric_dtype,
is_timedelta64_dtype, is_datetim... | Preserve complex dtypes when a stat_function on DataFrame is called with the optional level argument.
Minimal example:
```
import pandas as pd
frame = pd.DataFrame({'z': [1+2j]})
frame.sum(level=0)
```
| https://api.github.com/repos/pandas-dev/pandas/pulls/9828 | 2015-04-07T08:21:26Z | 2015-05-09T19:46:26Z | null | 2015-05-09T19:46:26Z |
add biweight midcorrelation as option for series correlation | diff --git a/doc/source/whatsnew/v0.17.0.txt b/doc/source/whatsnew/v0.17.0.txt
index f45ed9eeeaeee..c3ce516508a8d 100644
--- a/doc/source/whatsnew/v0.17.0.txt
+++ b/doc/source/whatsnew/v0.17.0.txt
@@ -37,6 +37,9 @@ New features
- SQL io functions now accept a SQLAlchemy connectable. (:issue:`7877`)
- Enable writing c... | Add [Biweight Midcorrelation](http://download-v2.springer.com/static/pdf/95/chp%253A10.1007%252F978-3-642-39678-6_14.pdf?token2=exp=1428360548~acl=%2Fstatic%2Fpdf%2F95%2Fchp%25253A10.1007%25252F978-3-642-39678-6_14.pdf*~hmac=980c2edddba12bbb73ebbadaa682092cde9d534bc8738d65785647402b683c21), an alternative correlation m... | https://api.github.com/repos/pandas-dev/pandas/pulls/9826 | 2015-04-07T01:16:54Z | 2015-10-18T14:02:24Z | null | 2023-05-11T01:12:55Z |
Allow tz-aware inputs in Holiday.dates | diff --git a/pandas/tseries/holiday.py b/pandas/tseries/holiday.py
index 3b3542b760d6f..c31e25115c6a4 100644
--- a/pandas/tseries/holiday.py
+++ b/pandas/tseries/holiday.py
@@ -203,7 +203,10 @@ def dates(self, start_date, end_date, return_name=False):
end_date = Timestamp(end_date)
year_offset = Dat... | closes #9825
Previously, passing tz-aware inputs to Holiday.dates would always result in an error because the the input start_date was converted in a way that destroyed timezone information. This PR makes that conversion correctly preserve tz info, and converts several of the existing tests to run with both tz-aware ... | https://api.github.com/repos/pandas-dev/pandas/pulls/9824 | 2015-04-07T00:44:21Z | 2015-04-08T14:00:34Z | 2015-04-08T14:00:34Z | 2015-04-08T14:27:32Z |
ENC: better pandas typesetting in ipython nbconvert --to latex | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index f700d4316842c..de06044785891 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -1428,7 +1428,10 @@ def to_latex(self, buf=None, columns=None, col_space=None, colSpace=None,
if buf is None:
return formatter.buf.getvalue(... | Currently, when IPython notebooks are converted to latex, pandas `DataFrame`s are appear as raw (verbatim) text. One simple solution is to include a `_repl_latex_` function. I have tried this solution and works. See https://github.com/ipython/ipython/issues/8261
| https://api.github.com/repos/pandas-dev/pandas/pulls/9821 | 2015-04-06T18:39:49Z | 2015-10-21T07:18:03Z | null | 2023-05-11T01:12:55Z |
DOC: fix some various doc warnings | diff --git a/doc/source/r_interface.rst b/doc/source/r_interface.rst
index 826d9e980538e..2207c823f43b1 100644
--- a/doc/source/r_interface.rst
+++ b/doc/source/r_interface.rst
@@ -56,6 +56,7 @@ appropriate pandas object (most likely a DataFrame):
.. ipython:: python
+ :okwarning:
import pandas.rpy.common ... | https://api.github.com/repos/pandas-dev/pandas/pulls/9819 | 2015-04-06T13:24:05Z | 2015-04-06T21:16:59Z | 2015-04-06T21:16:59Z | 2015-04-06T21:17:00Z | |
API: Sort keys for DataFrame.assign | diff --git a/doc/source/dsintro.rst b/doc/source/dsintro.rst
index e1c14029f1cf9..adcf2fca9b4c5 100644
--- a/doc/source/dsintro.rst
+++ b/doc/source/dsintro.rst
@@ -461,7 +461,7 @@ Inspired by `dplyr's
<http://cran.rstudio.com/web/packages/dplyr/vignettes/introduction.html#mutate>`__
``mutate`` verb, DataFrame has an... | Closes #9777
Previously the order of new columns from `.assign` was arbitrary. For predictability, we'll sort before inserting.
We need to be comfortable with this change since we can't change behavior later with a keyword arg.
Technically we _could_ allow referencing the a column defined within the same call to `as... | https://api.github.com/repos/pandas-dev/pandas/pulls/9818 | 2015-04-06T00:25:16Z | 2015-04-07T22:36:59Z | 2015-04-07T22:36:59Z | 2015-04-07T22:37:18Z |
BUG: Repeated time-series plot causes memory leak | diff --git a/doc/source/whatsnew/v0.17.0.txt b/doc/source/whatsnew/v0.17.0.txt
index d59b6120163ff..287963ed2c825 100644
--- a/doc/source/whatsnew/v0.17.0.txt
+++ b/doc/source/whatsnew/v0.17.0.txt
@@ -381,7 +381,7 @@ Bug Fixes
- Bug in ``Series.plot(kind='hist')`` Y Label not informative (:issue:`10485`)
- Bug in ``r... | Closes #9003, Closes #9307.
- Not to clutter plot functions outside of classes.
- Changed to use classmethods rather than closures for plot funcs.
- Not cache plot function itself on `ax._plot_data`. Changed to store `str` indicates plot kind.
- Moved `tsplot` related codes to `tseries.plotting.py`.
Because the chan... | https://api.github.com/repos/pandas-dev/pandas/pulls/9814 | 2015-04-05T09:55:45Z | 2015-07-29T14:05:50Z | 2015-07-29T14:05:50Z | 2015-08-03T13:23:33Z |
TST: Split graphics_test to main and others | diff --git a/pandas/tests/test_graphics.py b/pandas/tests/test_graphics.py
index d72bc420b2388..dd526720d2605 100644
--- a/pandas/tests/test_graphics.py
+++ b/pandas/tests/test_graphics.py
@@ -30,13 +30,11 @@
import pandas.tools.plotting as plotting
-def _skip_if_mpl_14_or_dev_boxplot():
- # GH 8382
- # Boxp... | Because `test_graphics.py` gets little longer, I've splitted it to 2 files. Test methods itself are not changed.
- `test_graphics.py` is for `.plot()` methods.
- `test_graphics_others.py` is for other plots, such as `.hist()`, `.boxplot` and miscs.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9813 | 2015-04-05T09:41:23Z | 2015-07-15T14:31:09Z | 2015-07-15T14:31:09Z | 2015-07-15T14:33:52Z |
BUG: secondary_y may not show legend properly | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 5e75d9ed011a2..05c762b91b925 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -75,7 +75,7 @@ Bug Fixes
- Bug in ``DataFrame`` slicing may not retain metadata (:issue:`9776`)
- Bug where ``Timdelta... | Closes #9610, Closes #9779.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9812 | 2015-04-05T00:55:47Z | 2015-04-05T13:52:22Z | 2015-04-05T13:52:22Z | 2015-04-11T23:35:42Z |
DOC: add dev environment creation details to contributing.rst | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index f7041dbabdad5..d3eeb820a12eb 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -137,6 +137,69 @@ clear what the branch brings to *pandas*. You can have many
shiny-new-features and switch in between them using the git checkout
command.
+### Creating a Developm... | - provides instructions for creating a development on any platform with conda
- cleans up the install.rst a bit
| https://api.github.com/repos/pandas-dev/pandas/pulls/9810 | 2015-04-04T18:13:24Z | 2015-04-06T12:18:51Z | 2015-04-06T12:18:51Z | 2015-04-06T12:54:31Z |
ENH: NDFrame.mask supports same kwds as where | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index f6032a65c32f1..efee559e0e86b 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -19,7 +19,7 @@ Enhancements
- Added ``StringMethods.capitalize()`` and ``swapcase`` which behave as the same as stand... | Closes #8801.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9808 | 2015-04-04T12:57:09Z | 2015-04-04T18:28:30Z | 2015-04-04T18:28:30Z | 2015-04-04T21:27:58Z |
BUG: format small floats correctly (GH9764) | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 8c49e2780ed06..6fc347cfeb273 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -79,3 +79,4 @@ Bug Fixes
- Bug in ``Series.quantile`` on empty Series of type ``Datetime`` or ``Timedelta`` (:issue:`... | closes #9764
In order to display a number from range (0,1) in decimal format with N significant digits (and not in scientific format), the number needs to be greater than or equal to 1e(-N+1), not 1e-N.
Did not test for range of display.precision, as this does not seem to current practice.
Did not include tests as... | https://api.github.com/repos/pandas-dev/pandas/pulls/9806 | 2015-04-03T20:35:07Z | 2015-04-06T00:18:30Z | 2015-04-06T00:18:30Z | 2015-04-06T00:18:43Z |
BUG: bug in json lib when frame has length zero | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 8c49e2780ed06..f6032a65c32f1 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -61,6 +61,7 @@ Bug Fixes
~~~~~~~~~
- Fixed bug (:issue:`9542`) where labels did not appear properly in legend of ``D... | closes https://github.com/pydata/pandas/issues/9781
on master:
```
>>> df = DataFrame(columns=['jim', 'joe'])
>>> df
Empty DataFrame
Columns: [jim, joe]
Index: []
>>> df.to_json()
'{}'
```
mixed type will segfault:
```
>>> df['joe'] = df['joe'].astype('i8')
>>> df.to_json()
Segmentation fault (core dumped)
```
on ... | https://api.github.com/repos/pandas-dev/pandas/pulls/9805 | 2015-04-03T18:19:26Z | 2015-04-03T22:41:42Z | 2015-04-03T22:41:42Z | 2015-05-06T02:50:31Z |
BUG: where behaves badly when dtype of self is datetime or timedelta, and dtype of other is not | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 8c49e2780ed06..3949ad4394fb1 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -79,3 +79,4 @@ Bug Fixes
- Bug in ``Series.quantile`` on empty Series of type ``Datetime`` or ``Timedelta`` (:issue:`... | There are a few weird behaviors that this fixes:
1. If `other` is an `int` or `float`, then `where` throws an Exception while trying to call `other.view`
2. If `other` is an np.int64, it works fine
3. If `other` is an np.float64, there is no error, but the result is bizarre (it reinterprets the bits of the float as an ... | https://api.github.com/repos/pandas-dev/pandas/pulls/9804 | 2015-04-03T17:18:07Z | 2015-04-14T15:24:45Z | null | 2015-09-19T00:38:19Z |
DOC: Fix broken formatting on docstring examples with first-line comments | diff --git a/pandas/core/generic.py b/pandas/core/generic.py
index e05709d7a180f..3674cbcca1063 100644
--- a/pandas/core/generic.py
+++ b/pandas/core/generic.py
@@ -2723,7 +2723,8 @@ def interpolate(self, method='linear', axis=0, limit=None, inplace=False,
Examples
--------
- # Filling in NaN... | Examples for `interpolate` and `groupby` weren't being formatted correctly. See http://pandas.pydata.org/pandas-docs/version/0.16.0/generated/pandas.Series.interpolate.html and http://pandas.pydata.org/pandas-docs/version/0.16.0/generated/pandas.Series.groupby.html
| https://api.github.com/repos/pandas-dev/pandas/pulls/9803 | 2015-04-03T14:40:44Z | 2015-04-28T12:00:28Z | 2015-04-28T12:00:28Z | 2015-09-19T00:38:25Z |
API: define _constructor_expanddim for subclassing Series and DataFrame | diff --git a/doc/source/faq.rst b/doc/source/faq.rst
index 467ec02b55f20..20762e3fc039f 100644
--- a/doc/source/faq.rst
+++ b/doc/source/faq.rst
@@ -369,3 +369,4 @@ just a thin layer around the ``QTableView``.
mw = MainWidget()
mw.show()
app.exec_()
+
diff --git a/doc/source/internals.rst b/doc/source... | Closes #9762. Does this needs release note?
| https://api.github.com/repos/pandas-dev/pandas/pulls/9802 | 2015-04-03T14:39:25Z | 2015-04-18T23:18:34Z | 2015-04-18T23:18:33Z | 2015-04-22T13:55:12Z |
DOC: str.split to use return_type in an example | diff --git a/doc/source/text.rst b/doc/source/text.rst
index 2d46b37853cee..a98153e277fae 100644
--- a/doc/source/text.rst
+++ b/doc/source/text.rst
@@ -42,18 +42,18 @@ Methods like ``split`` return a Series of lists:
s2 = Series(['a_b_c', 'c_d_e', np.nan, 'f_g_h'])
s2.str.split('_')
-Easy to expand this to r... | https://api.github.com/repos/pandas-dev/pandas/pulls/9801 | 2015-04-03T13:54:35Z | 2015-04-03T18:52:09Z | 2015-04-03T18:52:09Z | 2015-04-06T10:10:41Z | |
Closes #9795 (Stata writer changes input frame) | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 8c49e2780ed06..b24815fe62ba8 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -65,7 +65,7 @@ Bug Fixes
- Bug in ``scatter_matrix`` draws unexpected axis ticklabels (:issue:`5662`)
-
+- Fixed bu... | closes #9795
Just needed to move the data frame copy earlier in the execution path.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9800 | 2015-04-03T12:44:36Z | 2015-04-07T10:28:47Z | null | 2015-11-12T23:44:34Z |
DOC: regenerate CONTRIBUTING.md | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 5329bad1d90e4..f7041dbabdad5 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,105 +1,571 @@
-### Guidelines
+Contributing to pandas
+======================
+
+Where to start?
+---------------
All contributions, bug reports, bug fixes, documentation improve... | This is an alternative to #9796.
I simply did a couple of changes to the restructuredtext source so it generates cleaner markdown. The main thing was making the categories not quite so nested. (Was that [heavy nesting](http://pandas-docs.github.io/pandas-docs-travis/contributing.html#committing-your-code) intentional?... | https://api.github.com/repos/pandas-dev/pandas/pulls/9797 | 2015-04-03T04:54:57Z | 2015-04-03T17:18:52Z | 2015-04-03T17:18:52Z | 2015-04-03T19:58:47Z |
DOC: add doc/source/contributing.rst as the CONTRIBUTING.md | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 5329bad1d90e4..dc7cb7f2ab0bc 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,105 +1,569 @@
-### Guidelines
+Contributing to pandas
+======================
+
+Where to start?
+---------------
All contributions, bug reports, bug fixes, documentation improve... | xref #9754
I just did
`pandoc doc/source/contributing.rst -t markdown > CONTRIBUTING.md`
to generate the new CONTRIBUTING file.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9796 | 2015-04-03T02:04:49Z | 2015-04-03T11:07:53Z | null | 2015-04-03T11:07:53Z |
BUG: DataFrame._slice doesnt retain metadata | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index ca316bbac8474..eaf8054c69b18 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -69,7 +69,7 @@ Bug Fixes
- Bug in ``transform`` causing length mismatch when null entries were present and a fast aggre... | Closes #9776.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9793 | 2015-04-02T21:04:00Z | 2015-04-04T18:32:40Z | 2015-04-04T18:32:40Z | 2015-04-04T21:28:12Z |
Fix zlib and blosc imports in to_msgpack | diff --git a/ci/script.sh b/ci/script.sh
index b1ba7ba79c816..e1f71e70ded69 100755
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -16,6 +16,8 @@ fi
"$TRAVIS_BUILD_DIR"/ci/build_docs.sh 2>&1 > /tmp/doc.log &
# doc build log will be shown after tests
+pip install -U blosc # See https://github.com/pydata/pandas/pull/9783
+... | 6717aa06dcaa1950ffb46fef454f5df9404209bd removed zlib and blosc from the global namespace.
```
from pandas import read_csv
table = read_csv('aadhaar_data.csv')
table.to_msgpack('d.msg')
# NameError: global name 'blosc' is not defined
table.to_msgpack('d-blosc.msg', compress='blosc')
# NameError: global name 'zlib' i... | https://api.github.com/repos/pandas-dev/pandas/pulls/9783 | 2015-04-02T00:52:27Z | 2015-04-13T16:01:48Z | 2015-04-13T16:01:48Z | 2015-04-13T16:01:48Z |
ENH: Add StringMethods.partition and rpartition | diff --git a/doc/source/api.rst b/doc/source/api.rst
index 2d9fc0df5347d..364b3ba04aefb 100644
--- a/doc/source/api.rst
+++ b/doc/source/api.rst
@@ -544,10 +544,12 @@ strings and apply several methods to it. These can be acccessed like
Series.str.match
Series.str.normalize
Series.str.pad
+ Series.str.part... | Derived from #9111.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9773 | 2015-04-01T13:58:57Z | 2015-05-07T11:08:58Z | 2015-05-07T11:08:58Z | 2015-05-07T17:18:42Z |
ENH: Add option in read_csv to infer compression type from filename | diff --git a/doc/source/io.rst b/doc/source/io.rst
index 1c8a1159ab162..a6c702e1cd874 100644
--- a/doc/source/io.rst
+++ b/doc/source/io.rst
@@ -89,6 +89,8 @@ They can take a number of arguments:
- ``delim_whitespace``: Parse whitespace-delimited (spaces or tabs) file
(much faster than using a regular expressio... | Ideally, I would love for this to be the default, but that wouldn't be backwards-compatible in the case where the filename ends in '.gz' or '.bz2' and you want to treat it as uncompressed. That seems like it would be very rare, though.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9770 | 2015-04-01T12:11:53Z | 2015-04-18T02:53:14Z | 2015-04-18T02:53:14Z | 2015-04-18T03:41:12Z |
Added documentation for mode() | diff --git a/pandas/core/frame.py b/pandas/core/frame.py
index fad271dbdb224..f700d4316842c 100644
--- a/pandas/core/frame.py
+++ b/pandas/core/frame.py
@@ -4411,9 +4411,15 @@ def _get_agg_axis(self, axis_num):
def mode(self, axis=0, numeric_only=False):
"""
- Gets the mode of each element along ... | This relates to issue #9750
| https://api.github.com/repos/pandas-dev/pandas/pulls/9769 | 2015-04-01T11:20:03Z | 2015-04-02T18:25:44Z | 2015-04-02T18:25:44Z | 2015-04-02T18:25:54Z |
ENH: Add StringMethods.capitalize and swapcase | diff --git a/doc/source/api.rst b/doc/source/api.rst
index b617009fe2f13..af9f8c84388bd 100644
--- a/doc/source/api.rst
+++ b/doc/source/api.rst
@@ -521,6 +521,7 @@ strings and apply several methods to it. These can be acccessed like
:toctree: generated/
:template: autosummary/accessor_method.rst
+ Series.s... | Derived from #9111.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9766 | 2015-03-31T20:51:31Z | 2015-04-01T19:17:09Z | 2015-04-01T19:17:09Z | 2015-04-02T13:58:00Z |
BUG: incorrectly defined Memoridal Day holiday | diff --git a/pandas/tseries/holiday.py b/pandas/tseries/holiday.py
index 3b3542b760d6f..0d77e2412c1d7 100644
--- a/pandas/tseries/holiday.py
+++ b/pandas/tseries/holiday.py
@@ -407,7 +407,7 @@ def merge(self, other, inplace=False):
else:
return holidays
-USMemorialDay = Holiday('MemorialDay', mo... | closes #9760
Memorial Day was incorrectly defined.
It is the last Monday in May, so the earliest it could be is the 25th (not the 24th).
This change fixes the problem.
```
>>> from pandas.tseries.holiday import AbstractHolidayCalendar, USMemorialDay
>>> class MemorialDayCalendar(AbstractHolidayCalendar):rules=[USMem... | https://api.github.com/repos/pandas-dev/pandas/pulls/9763 | 2015-03-31T16:45:07Z | 2015-08-12T15:14:02Z | null | 2015-08-12T15:14:02Z |
**BUG**: GH9759 - allow FloatArrayFormatter to format arrays with NaNs | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index ca316bbac8474..baba88b021a3e 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -76,3 +76,5 @@ Bug Fixes
- Bug in ``Series.quantile`` on empty Series of type ``Datetime`` or ``Timedelta`` (:issue... | https://api.github.com/repos/pandas-dev/pandas/pulls/9761 | 2015-03-31T13:38:50Z | 2015-04-04T18:34:20Z | null | 2015-04-04T18:34:32Z | |
BUG: allow conversion of Timestamp and Timedelta to string in astype | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 9f989b2cf0ea9..d0f7af2275812 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -30,6 +30,7 @@ Enhancements
df = DataFrame(np.random.randn(3, 3), columns=['A', 'B', 'C'])
df.drop(['A', 'X'],... | Fixes GH #9757
| https://api.github.com/repos/pandas-dev/pandas/pulls/9758 | 2015-03-31T11:47:51Z | 2015-04-10T06:20:57Z | 2015-04-10T06:20:57Z | 2015-09-19T00:38:25Z |
Start combining various development documentation into one place. | diff --git a/doc/source/contributing.rst b/doc/source/contributing.rst
index 6d76c6e4efd6c..68bd6109b85d7 100644
--- a/doc/source/contributing.rst
+++ b/doc/source/contributing.rst
@@ -4,13 +4,574 @@
Contributing to pandas
**********************
-See the following links:
+.. contents:: Table of contents:
+ :local... | Closes #6232
In working with the various "Contributing" documents recently it was clear that we needed to combine them. This is a stab at doing so. I took the various components from pydata.org, CONTRIBUTING.md, various wiki pages, and the already included Documentation documents and created this file. I think it'... | https://api.github.com/repos/pandas-dev/pandas/pulls/9754 | 2015-03-31T02:23:20Z | 2015-04-03T00:41:09Z | 2015-04-03T00:41:09Z | 2015-05-05T18:03:08Z |
BUG: DataFrame.equals should not care about block order (GH #9330) | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 8c49e2780ed06..52b57529fc6c2 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -70,6 +70,7 @@ Bug Fixes
- Bug in ``transform`` causing length mismatch when null entries were present and a fast agg... | closes #9330 and another version of the same problem [here on SO](http://stackoverflow.com/questions/29311659/how-can-pandas-dataframes-appear-identical-but-fail-equals) by canonicalizing the block order during an `equals` comparison.
Tested at the block manager level and above it at the frame level.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9745 | 2015-03-28T22:43:43Z | 2015-04-05T23:10:10Z | null | 2015-04-05T23:10:10Z |
BUG: where gives incorrect results when upcasting (GH 9731) | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 3c3742c968642..e2b51f1b984cc 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -64,3 +64,4 @@ Bug Fixes
- Bug in ``Series.quantile`` on empty Series of type ``Datetime`` or ``Timedelta`` (:issue... | closes #9731
The main issue is when the destination and source arrays have different lengths, `np.putmask` doesn't behave like `arr[mask] = values`:
"Sets `a.flat[n] = values[n]` for each n where `mask.flat[n]==True`"
We have to use `np.place` instead. A secondary issue is that `np.place` doesn't automatically conve... | https://api.github.com/repos/pandas-dev/pandas/pulls/9743 | 2015-03-28T14:08:51Z | 2015-04-02T21:25:39Z | 2015-04-02T21:25:39Z | 2015-06-10T13:41:24Z |
BUG: Bring pandas up to date with pandas-datareader | diff --git a/pandas/io/data.py b/pandas/io/data.py
index ea635e85ed177..3e077bf526ab9 100644
--- a/pandas/io/data.py
+++ b/pandas/io/data.py
@@ -172,14 +172,14 @@ def _retry_read_url(url, retry_count, pause, name):
if len(rs) > 2 and rs.index[-1] == rs.index[-2]: # pragma: no cover
rs = r... | Two bug fixes from pandas-datareader.
pydata/pandas-datareader#25
pydata/pandas-datareader#24
| https://api.github.com/repos/pandas-dev/pandas/pulls/9742 | 2015-03-28T03:30:41Z | 2015-03-29T17:10:43Z | 2015-03-29T17:10:43Z | 2015-04-07T09:05:49Z |
ENH: support CategoricalIndex (GH7629) | diff --git a/doc/source/advanced.rst b/doc/source/advanced.rst
index 1749409c863df..688935c6b104d 100644
--- a/doc/source/advanced.rst
+++ b/doc/source/advanced.rst
@@ -594,6 +594,95 @@ faster than fancy indexing.
timeit ser.ix[indexer]
timeit ser.take(indexer)
+.. _indexing.categoricalindex:
+
+CategoricalIn... | closes #7629
xref #8613
xref #8074
- [x] docs / whatsnew
- [x] ~~auto-create a `CategoricalIndex` when grouping by a `Categorical` (this doesn't ATM)~~
- [x] adding a value not in the Index, e.g. `df2.loc['d'] = 5` should do what? (currently will coerce to an `Index`)
- [x] `pd.concat([df2,df])` should STILL have a `... | https://api.github.com/repos/pandas-dev/pandas/pulls/9741 | 2015-03-27T22:01:57Z | 2015-04-20T11:19:57Z | 2015-04-20T11:19:57Z | 2015-04-20T14:35:36Z |
Plotting: don't change visibility of xaxis labels and ticklabels if passing in a axis | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 3c3742c968642..c6ace8c23e064 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -31,6 +31,14 @@ API changes
+- When passing in an ax to ``df.plot( ..., ax=ax)``, the `sharex` kwarg will now defa... | This does two things:
- fix for changing the wrong xlabels/xticklabels if a gridspec is used and the ax is passed in (not sure about using subplot without gridspec)
- changes the default behaviour for sharex if an axis is passed in: before the visibility changes were applied per default, now they are only applied if ex... | https://api.github.com/repos/pandas-dev/pandas/pulls/9740 | 2015-03-27T13:50:33Z | 2015-03-31T11:54:03Z | 2015-03-31T11:54:03Z | 2015-03-31T11:54:12Z |
ENH: Add an axis parameter to DataFrame.diff | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
old mode 100644
new mode 100755
index 352f079f38e96..29368d66b2991
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -18,6 +18,7 @@ Enhancements
~~~~~~~~~~~~
- Added ``StringMethods.capitalize()`` and ``swapc... | https://api.github.com/repos/pandas-dev/pandas/pulls/9727 | 2015-03-25T12:53:50Z | 2015-04-29T10:45:52Z | 2015-04-29T10:45:52Z | 2015-06-10T13:41:27Z | |
TST: Fix dateutil version check | diff --git a/pandas/tseries/tests/test_tslib.py b/pandas/tseries/tests/test_tslib.py
index 79adabafb7044..e452ddee9d8db 100644
--- a/pandas/tseries/tests/test_tslib.py
+++ b/pandas/tseries/tests/test_tslib.py
@@ -167,7 +167,7 @@ def test_repr(self):
# dateutil zone change (only matters for repr)
imp... | This allows the test to pass when using dateutil version 2.4.0
```
In [2]: '2.4.0' <= LooseVersion('2.4')
Out[2]: False
In [3]: '2.4.0' <= LooseVersion('2.4.0')
Out[3]: True
```
| https://api.github.com/repos/pandas-dev/pandas/pulls/9725 | 2015-03-25T11:44:34Z | 2015-03-25T22:06:21Z | 2015-03-25T22:06:21Z | 2015-03-25T22:48:08Z |
BUG: _retry_read_url retries connection even if successful | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 1e570768b5a7a..f8b34bdfcca9e 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -48,3 +48,4 @@ Bug Fixes
~~~~~~~~~
- Bug in ``transform`` causing length mismatch when null entries were present and... | https://api.github.com/repos/pandas-dev/pandas/pulls/9723 | 2015-03-25T11:17:27Z | 2015-03-25T11:18:52Z | null | 2015-03-25T11:22:46Z | |
Moved imports into functions that use them | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 84472802d73be..db9d970e1aba1 100755
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -254,3 +254,5 @@ Bug Fixes
- Bug in hiding ticklabels with subplots and shared axes when adding a new plot to an existi... | closes #9713
closes #8327
Changes to be committed:
modified: pandas/io/gbq.py
Moved google api imports into functions that call them, removed unused imports. This fixes #9713
| https://api.github.com/repos/pandas-dev/pandas/pulls/9722 | 2015-03-25T04:38:20Z | 2015-05-01T16:45:03Z | null | 2015-05-01T16:45:03Z |
DOC: fix api documentation for accessors | diff --git a/doc/_templates/autosummary/accessor.rst b/doc/_templates/autosummary/accessor.rst
new file mode 100644
index 0000000000000..1401121fb51c6
--- /dev/null
+++ b/doc/_templates/autosummary/accessor.rst
@@ -0,0 +1,6 @@
+{{ fullname }}
+{{ underline }}
+
+.. currentmodule:: {{ module.split('.')[0] }}
+
+.. autom... | Closes #9599
With this I updated the docs (assign docstring included in API, and the cat/str/dt accessors now documented correctly).
The Categorical page without methods and attributes is not yet working.
Will complete this for the v0.16.1 docs
| https://api.github.com/repos/pandas-dev/pandas/pulls/9721 | 2015-03-24T20:46:41Z | 2015-05-11T12:28:04Z | 2015-05-11T12:28:04Z | 2015-05-11T12:47:19Z |
Documentation how to drop duplicate indices | diff --git a/doc/source/indexing.rst b/doc/source/indexing.rst
index 5079b4fa8ad6f..1f50a9c85343c 100644
--- a/doc/source/indexing.rst
+++ b/doc/source/indexing.rst
@@ -1137,6 +1137,16 @@ should be taken instead.
df2.drop_duplicates(['a','b'])
df2.drop_duplicates(['a','b'], take_last=True)
+An easier way to d... | fixes #9708
| https://api.github.com/repos/pandas-dev/pandas/pulls/9717 | 2015-03-24T12:50:10Z | 2015-03-25T22:57:26Z | null | 2015-03-25T22:57:26Z |
PERF: add initial asv config and vbench->asv conversion script | diff --git a/asv_bench/asv.conf.json b/asv_bench/asv.conf.json
new file mode 100644
index 0000000000000..ddb6d97de43b5
--- /dev/null
+++ b/asv_bench/asv.conf.json
@@ -0,0 +1,64 @@
+{
+ // The version of the config file format. Do not change, unless
+ // you know what you are doing.
+ "version": 1,
+
+ // T... | @jorisvandenbossche Here's the initial pass I was referencing in our discussion in #9660; also relevant closes #8361.
A few caveats:
- The `eval` suite will have to be converted by hand, as my `ast` transformer isn't parsing the string in `eval("df1 + df2")`
- Lots of test failures that I haven't even looked at
- `... | https://api.github.com/repos/pandas-dev/pandas/pulls/9715 | 2015-03-24T06:13:49Z | 2015-08-19T00:32:16Z | 2015-08-19T00:32:16Z | 2015-08-19T00:44:21Z |
SAS xport file reader | diff --git a/doc/source/api.rst b/doc/source/api.rst
index 1cbe55ddbacb6..066b36bfa57b6 100644
--- a/doc/source/api.rst
+++ b/doc/source/api.rst
@@ -82,6 +82,15 @@ HDFStore: PyTables (HDF5)
HDFStore.get
HDFStore.select
+SAS
+~~~
+
+.. autosummary::
+ :toctree: generated/
+
+ read_sas
+ XportReader
+
SQ... | Here is an initial attempt to port Jack Cushman's xport file reader into Pandas.
Partially addresses #4052 (but this only deals with xport files, not sas7bdat files)
| https://api.github.com/repos/pandas-dev/pandas/pulls/9711 | 2015-03-23T13:45:08Z | 2015-08-14T15:40:16Z | 2015-08-14T15:40:16Z | 2015-11-12T23:43:34Z |
DOC: try to use matplotlib style (mpl >= 1.4) in all docs | diff --git a/doc/source/10min.rst b/doc/source/10min.rst
index c98f41973e1ee..1f59c38d75f93 100644
--- a/doc/source/10min.rst
+++ b/doc/source/10min.rst
@@ -12,7 +12,11 @@
from pandas import options
import pandas as pd
np.set_printoptions(precision=4, suppress=True)
- options.display.mpl_style='default'
+... | now this was only done in the plotting docs itself, with as a result that the actual style used is a mixture between the two
| https://api.github.com/repos/pandas-dev/pandas/pulls/9706 | 2015-03-23T09:12:32Z | 2015-03-24T10:35:53Z | 2015-03-24T10:35:53Z | 2015-03-24T10:35:53Z |
DOC: add DataFrame.assign to API docs | diff --git a/doc/source/api.rst b/doc/source/api.rst
index 33577a5badc54..b617009fe2f13 100644
--- a/doc/source/api.rst
+++ b/doc/source/api.rst
@@ -861,6 +861,7 @@ Combining / joining / merging
:toctree: generated/
DataFrame.append
+ DataFrame.assign
DataFrame.join
DataFrame.merge
DataFrame.upd... | @TomAugspurger does this look like the right place to put this?
@jorisvandenbossche can we possibly merge this into the docs for v0.16?
| https://api.github.com/repos/pandas-dev/pandas/pulls/9705 | 2015-03-23T05:32:39Z | 2015-03-24T10:36:05Z | 2015-03-24T10:36:04Z | 2015-03-25T00:49:17Z |
DOC: add automatic content to 0.16.1 whatsnew file | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index bf01d3b21f3fa..f01bca17fa83a 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -3,30 +3,45 @@
v0.16.1 (April ??, 2015)
------------------------
-This is a minor bug-fix release from 0.16.0 and in... | Replaced the manual contents with the automatic (like now in 0.16.0), and a small rephrase (putting the bug fixes first)
| https://api.github.com/repos/pandas-dev/pandas/pulls/9702 | 2015-03-22T22:35:50Z | 2015-03-23T09:13:06Z | 2015-03-23T09:13:06Z | 2015-03-23T09:13:07Z |
ENH Make year and quarter dash-separatable | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index bf01d3b21f3fa..9c88815887674 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -22,6 +22,9 @@ API changes
Enhancements
~~~~~~~~~~~~
+- Add support for separating years and quarters using dashes, ... | This closes #9688 by making years and quarters separable by dashes.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9701 | 2015-03-22T20:52:39Z | 2015-03-26T09:49:51Z | 2015-03-26T09:49:50Z | 2015-03-26T10:43:40Z |
BUG: ensure we use group sizes, not group counts, in transform (GH9697) | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index bf01d3b21f3fa..5801d1b811790 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -31,3 +31,5 @@ Performance Improvements
Bug Fixes
~~~~~~~~~
+
+- Bug in ``transform`` causing length mismatch when n... | Switch count() to size(), so that when we build the expanded values we're using the size of the groups and not simply the number of non-null values they have. Fixes #9697.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9699 | 2015-03-22T17:05:19Z | 2015-03-23T10:55:36Z | 2015-03-23T10:55:36Z | 2015-03-23T10:55:42Z |
BUG: fix for interp with axis=1 and inplace | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index bf01d3b21f3fa..b6a6d27c929f2 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -31,3 +31,6 @@ Performance Improvements
Bug Fixes
~~~~~~~~~
+
+
+- Fixed bug with inplace interpolace along the "col... | Closes https://github.com/pydata/pandas/issues/9687
There's still some weird issues with dtypes. In my test case there's a DataFrame with dtypes [int, float, int]. After the interpolation they should be downcasts to [int, int, int] when the missing value is filled. But along the way a transpose changes things to `[flo... | https://api.github.com/repos/pandas-dev/pandas/pulls/9695 | 2015-03-21T13:40:01Z | 2015-05-09T16:16:26Z | null | 2015-08-18T12:45:09Z |
BUG: datetime/timedelta Series quantile() call | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index bf01d3b21f3fa..576103b5411b5 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -31,3 +31,5 @@ Performance Improvements
Bug Fixes
~~~~~~~~~
+
+- Bug in ``Series.quantile`` on empty Series of type ... | Changes to be committed:
modified: pandas/core/series.py
modified: pandas/tests/test_series.py
Fixes global reference to iNaT (should be tslib.iNaT) in series._maybe_box.
Adds test `test_datetime_timedelta_quantiles` to check for proper return value
in test_series.py.
Issue #9675
| https://api.github.com/repos/pandas-dev/pandas/pulls/9694 | 2015-03-21T01:39:57Z | 2015-03-25T23:03:40Z | null | 2015-03-25T23:03:40Z |
Update vendored pyperclip to 1.5.8 | diff --git a/doc/source/whatsnew/v0.18.0.txt b/doc/source/whatsnew/v0.18.0.txt
index c517f89855601..5e0b63fab5ba5 100644
--- a/doc/source/whatsnew/v0.18.0.txt
+++ b/doc/source/whatsnew/v0.18.0.txt
@@ -193,3 +193,4 @@ Bug Fixes
- Bug in ``.loc`` result with duplicated key may have ``Index`` with incorrect dtype (:iss... | Resolves #9263
Tested:
- [x] windows
- [x] macosx
- [x] linux
| https://api.github.com/repos/pandas-dev/pandas/pulls/9693 | 2015-03-20T20:52:05Z | 2015-12-05T15:33:44Z | null | 2021-12-03T12:12:48Z |
DOC: further clean-up whatsnew file | diff --git a/doc/source/release.rst b/doc/source/release.rst
index 5d69c29d4612f..faefdf4f6edd3 100644
--- a/doc/source/release.rst
+++ b/doc/source/release.rst
@@ -60,6 +60,12 @@ Highlights include:
- Backwards incompatible change to ``Timedelta`` to conform the ``.seconds`` attribute with ``datetime.timedelta``, see... | Some missing spaced in the string-methods section, and added a highlight about the deprecations.
@jreback you suggested to remove the highlights alltogether now we have the automatic table of contents, but I think it is not fully equivalent (eg the deprecations I added now are not directly visible in the table of cont... | https://api.github.com/repos/pandas-dev/pandas/pulls/9689 | 2015-03-20T14:26:00Z | 2015-03-20T15:27:34Z | 2015-03-20T15:27:34Z | 2015-03-20T15:27:34Z |
Start python3 compatibility | diff --git a/vb_suite/frame_methods.py b/vb_suite/frame_methods.py
index 1d7c5e0d9acef..c9631a5d993f9 100644
--- a/vb_suite/frame_methods.py
+++ b/vb_suite/frame_methods.py
@@ -505,7 +505,7 @@ def get_data(n=100000):
frame_from_records_generator_nrows = Benchmark('df = DataFrame.from_records(get_data(), nrows=1000)',
... | Start for #9660
These are changes to get vbench running under python3. There are quite a few tests that need modification, but with these changes the code will parse and the suite can run (along with [vbench#36](https://github.com/pydata/vbench/pull/36)).
| https://api.github.com/repos/pandas-dev/pandas/pulls/9686 | 2015-03-20T02:13:43Z | 2015-07-28T21:51:47Z | null | 2015-07-28T21:51:47Z |
Fixes groupby.apply() error when no returns #9684 | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index b80e341d4156a..a2e6b59646724 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -99,11 +99,10 @@ Bug Fixes
- Bug in ``transform`` causing length mismatch when null entries were present and a fast... | Closes issue: #9684
Returns empty object even if all entries are missing.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9685 | 2015-03-19T22:15:41Z | 2015-04-28T01:13:59Z | null | 2015-04-28T01:13:59Z |
Bug: Access unknown attribute of timedeltaindexed series used to raise ValueError | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 8c49e2780ed06..fa9eb9972d7ac 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -70,11 +70,7 @@ Bug Fixes
- Bug in ``transform`` causing length mismatch when null entries were present and a fast ag... | closes #9680
And now it raises AttributeError.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9683 | 2015-03-19T15:10:08Z | 2015-04-28T00:53:52Z | null | 2015-04-28T00:53:57Z |
Added itertools.groupby equivalent example. | diff --git a/doc/source/cookbook.rst b/doc/source/cookbook.rst
index 81fe4aac51dd7..9347fb1838bde 100644
--- a/doc/source/cookbook.rst
+++ b/doc/source/cookbook.rst
@@ -452,7 +452,7 @@ Replace
`Using replace with backrefs
<http://stackoverflow.com/questions/16818871/extracting-value-and-creating-new-column-out-of-it>... | https://api.github.com/repos/pandas-dev/pandas/pulls/9682 | 2015-03-19T12:20:00Z | 2015-03-19T20:39:49Z | null | 2015-03-19T20:39:49Z | |
BUG: workaround PyTables 319, but not setting expected rows (GH8265, GH9676) | diff --git a/doc/source/whatsnew/v0.16.0.txt b/doc/source/whatsnew/v0.16.0.txt
index 2f21323a2ddd7..557e282d9e744 100644
--- a/doc/source/whatsnew/v0.16.0.txt
+++ b/doc/source/whatsnew/v0.16.0.txt
@@ -609,6 +609,7 @@ Bug Fixes
- Bug in ``Series.values_counts`` with excluding ``NaN`` for categorical type ``Series`` wit... | closes #8265
closes #9676
| https://api.github.com/repos/pandas-dev/pandas/pulls/9681 | 2015-03-19T11:53:16Z | 2015-03-19T20:39:15Z | null | 2015-03-19T20:39:15Z |
DataFrame.plot error when both 'color' and 'style' arguments are passed (GH9671) | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 05c762b91b925..806f77ea56122 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -71,6 +71,7 @@ Bug Fixes
- Bug in ``transform`` causing length mismatch when null entries were present and a fast agg... | closes #9671
`self.style` can be a list of strings or a string. If it is a string, we make a list containing that string, so that we only have to deal with a list of strings. We check every element in that list and raise an error if it has a color symbol.
The test makes sure that calling `plot()` and passing both `col... | https://api.github.com/repos/pandas-dev/pandas/pulls/9674 | 2015-03-18T16:12:59Z | 2015-04-06T12:23:51Z | null | 2015-04-06T12:23:51Z |
Fix for issue #9671 | diff --git a/pandas/tools/plotting.py b/pandas/tools/plotting.py
index cf9c890823f8f..fc4530450d629 100644
--- a/pandas/tools/plotting.py
+++ b/pandas/tools/plotting.py
@@ -871,12 +871,17 @@ def _validate_color_args(self):
"simultaneously. Using 'color'")
if 'color' in self.kwds an... | closes https://github.com/pydata/pandas/issues/9671
`self.style` can be a list of strings or a string. If it is a string, we make a list containing that string, so that we only have to deal with a list of strings. We check every element in that list and raise an error if it has a color symbol.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9673 | 2015-03-17T15:40:07Z | 2015-03-18T16:14:24Z | null | 2015-03-18T16:14:24Z |
BUG: support TimedeltaIndex serialization in fixed stores (GH9635) | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index 8c49e2780ed06..30195c57a0587 100644
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -72,7 +72,7 @@ Bug Fixes
-
+- Bug : TimdeltaIndex serialisation wasn't supported in fixed stores (:issue:`9635`)
... | closes #9635
Hop, revival of PR9662, after some bad git moves.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9672 | 2015-03-17T13:41:37Z | 2015-04-04T18:40:35Z | null | 2015-04-04T18:40:35Z |
ENH: add StringMethods (.str accessor) to Index, fixes #9068 | diff --git a/doc/source/text.rst b/doc/source/text.rst
index a98153e277fae..ee91ea3c166b6 100644
--- a/doc/source/text.rst
+++ b/doc/source/text.rst
@@ -17,10 +17,10 @@ Working with Text Data
.. _text.string_methods:
-Series is equipped with a set of string processing methods
+Series and Index are equipped with a ... | fixes #9068
| https://api.github.com/repos/pandas-dev/pandas/pulls/9667 | 2015-03-17T03:06:25Z | 2015-04-10T13:50:14Z | 2015-04-10T13:50:14Z | 2015-04-29T16:56:12Z |
New function to sample from frames (Issue #2419 ) | diff --git a/doc/source/api.rst b/doc/source/api.rst
index 87e9b20f97e69..d442d8631247c 100644
--- a/doc/source/api.rst
+++ b/doc/source/api.rst
@@ -390,6 +390,7 @@ Reindexing / Selection / Label manipulation
Series.reindex_like
Series.rename
Series.reset_index
+ Series.sample
Series.select
Series... | closes #2419
Creates a function `.sample()` in generic.py to sample from pandas objects. Returns either a fixed number of rows or a share. Also includes a number of tests in `test_sample()` -- I am open to added suggestions.
Input from users with panel experience appreciated!
| https://api.github.com/repos/pandas-dev/pandas/pulls/9666 | 2015-03-16T21:05:39Z | 2015-05-01T12:50:43Z | null | 2015-05-01T17:39:18Z |
DOC: grammar fixes, add conda install to README | diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 876daa97313e8..5329bad1d90e4 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -19,7 +19,7 @@ looking for a quick way to help out.
...
```
- - Include the full version string of pandas and it's dependencies. In recent (>0.12) versions
+ - In... | https://api.github.com/repos/pandas-dev/pandas/pulls/9665 | 2015-03-16T19:48:28Z | 2015-03-17T00:26:59Z | 2015-03-17T00:26:59Z | 2015-04-29T15:31:49Z | |
BUG: support TimedeltaIndex serialization in fixed stores (GH9635) | diff --git a/doc/source/whatsnew/v0.16.0.txt b/doc/source/whatsnew/v0.16.0.txt
index 0eeee8ccfddf6..721a49f5d58ce 100644
--- a/doc/source/whatsnew/v0.16.0.txt
+++ b/doc/source/whatsnew/v0.16.0.txt
@@ -14,11 +14,13 @@ Highlights include:
- Backwards incompatible change to ``Timedelta`` to conform the ``.seconds`` attri... | closes https://github.com/pydata/pandas/issues/9635
Small change to fix issue 9635. I'm a beginner contributor, feel free to crush it out.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9662 | 2015-03-16T11:49:28Z | 2015-03-17T12:41:39Z | null | 2015-03-17T12:41:39Z |
DOC: example of pandas to R transfer of DataFrame using HDF5 file | diff --git a/doc/source/comparison_with_r.rst b/doc/source/comparison_with_r.rst
index 8462bacef47d2..0841f3354d160 100644
--- a/doc/source/comparison_with_r.rst
+++ b/doc/source/comparison_with_r.rst
@@ -27,6 +27,10 @@ libraries, we care about the following things:
This page is also here to offer a bit of a translati... | closes #9636
I had some trouble getting the HDF5 import of DataFrame objects to work on the R side (pandas is fine). I've added an example to the documentation with a simple load function in R which assembles an R data.frame from the corresponding *_items and *_values nodes in the HDF5 file.
NOTE: Any improvements to... | https://api.github.com/repos/pandas-dev/pandas/pulls/9661 | 2015-03-16T10:47:12Z | 2015-03-17T13:09:55Z | null | 2017-09-07T06:24:32Z |
API: spurious setting_with_copy warning (GH8730) | diff --git a/doc/source/whatsnew/v0.16.0.txt b/doc/source/whatsnew/v0.16.0.txt
index 0eeee8ccfddf6..4790017727005 100644
--- a/doc/source/whatsnew/v0.16.0.txt
+++ b/doc/source/whatsnew/v0.16.0.txt
@@ -454,6 +454,15 @@ Other API Changes
To reproduce the old behavior, simply add more precision to the label (e.g., us... | closes #8730
was tricky to distinguish this case from others, but I think this is a reasonably robust soln.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9659 | 2015-03-15T15:46:51Z | 2015-03-15T19:52:37Z | 2015-03-15T19:52:37Z | 2015-03-15T19:52:37Z |
CI: don't remove python-dateutil at end of install | diff --git a/ci/install_conda.sh b/ci/install_conda.sh
index 2a54a038b474e..4c8a62c64979d 100755
--- a/ci/install_conda.sh
+++ b/ci/install_conda.sh
@@ -98,7 +98,7 @@ fi
python setup.py build_ext --inplace && python setup.py develop
-for package in beautifulsoup4 'python-dateutil'; do
+for package in beautifulsoup... | puzzled why the travis ci error started happening. This seems to fix it (and I don't even remember why this was necessary in the first place).
| https://api.github.com/repos/pandas-dev/pandas/pulls/9657 | 2015-03-14T15:13:00Z | 2015-03-14T15:33:52Z | 2015-03-14T15:33:52Z | 2015-03-14T15:33:52Z |
DOC: Remove duplicated Indexing Changes section | diff --git a/doc/source/whatsnew/v0.16.0.txt b/doc/source/whatsnew/v0.16.0.txt
index 2a83db94aa44c..3273e1b85db82 100644
--- a/doc/source/whatsnew/v0.16.0.txt
+++ b/doc/source/whatsnew/v0.16.0.txt
@@ -209,72 +209,6 @@ Using ``.components`` allows the full component access
t.components
t.components.seconds
-..... | "Indexing Changes" section is duplicated in what's new.
- http://pandas-docs.github.io/pandas-docs-travis/whatsnew.html
| https://api.github.com/repos/pandas-dev/pandas/pulls/9655 | 2015-03-14T01:52:50Z | 2015-03-14T01:54:08Z | null | 2015-03-16T11:56:11Z |
DOC: organize stringmethods in what's new | diff --git a/doc/source/whatsnew/v0.16.0.txt b/doc/source/whatsnew/v0.16.0.txt
index 0eeee8ccfddf6..df99148383ade 100644
--- a/doc/source/whatsnew/v0.16.0.txt
+++ b/doc/source/whatsnew/v0.16.0.txt
@@ -14,6 +14,7 @@ Highlights include:
- Backwards incompatible change to ``Timedelta`` to conform the ``.seconds`` attribu... | Added summarized section to the release note based on the discussion in #9386
| https://api.github.com/repos/pandas-dev/pandas/pulls/9654 | 2015-03-14T01:47:54Z | 2015-03-16T08:49:53Z | 2015-03-16T08:49:53Z | 2015-03-16T11:56:04Z |
COMPAT: odd arrays can be correctly ordered in newer versions of numpy | diff --git a/pandas/tests/test_categorical.py b/pandas/tests/test_categorical.py
index a7f241168ea73..cd78fd22e64ca 100644
--- a/pandas/tests/test_categorical.py
+++ b/pandas/tests/test_categorical.py
@@ -86,7 +86,11 @@ def test_constructor_unsortable(self):
self.assertFalse(factor.ordered)
# this h... | https://api.github.com/repos/pandas-dev/pandas/pulls/9652 | 2015-03-13T21:20:32Z | 2015-03-13T22:37:33Z | 2015-03-13T22:37:33Z | 2015-03-13T22:37:33Z | |
fix crash on unicode level names | diff --git a/pandas/core/index.py b/pandas/core/index.py
index 195cb21d6564c..0eddf701995c4 100644
--- a/pandas/core/index.py
+++ b/pandas/core/index.py
@@ -4014,7 +4014,7 @@ def sortlevel(self, level=0, ascending=True, sort_remaining=True):
labels = list(self.labels)
shape = list(self.levshape)
- ... | This fixed my problem when calling DataFrame.stack(<integer level number>). Not really familiar with pandas internals, but couldn't find any reason why unicode strings won't be accepted here.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9650 | 2015-03-13T20:31:02Z | 2015-04-11T18:29:26Z | null | 2015-04-11T18:29:26Z |
DOC: Fix heading level for assign | diff --git a/doc/source/dsintro.rst b/doc/source/dsintro.rst
index 6eb13ce722fff..e1c14029f1cf9 100644
--- a/doc/source/dsintro.rst
+++ b/doc/source/dsintro.rst
@@ -453,7 +453,7 @@ available to insert at a particular location in the columns:
.. _dsintro.chained_assignment:
Assigning New Columns in Method Chains
---... | Closes https://github.com/pydata/pandas/issues/9646
I did this through the GH online editor. Let's see if it works.
| https://api.github.com/repos/pandas-dev/pandas/pulls/9649 | 2015-03-13T19:48:05Z | 2015-03-13T23:46:29Z | 2015-03-13T23:46:29Z | 2015-03-13T23:46:32Z |
PERF: optimize memory usage for to_hdf | diff --git a/doc/source/whatsnew/v0.16.0.txt b/doc/source/whatsnew/v0.16.0.txt
index 4790017727005..54ef3c893f355 100644
--- a/doc/source/whatsnew/v0.16.0.txt
+++ b/doc/source/whatsnew/v0.16.0.txt
@@ -514,6 +514,7 @@ Performance Improvements
- Performance improvements in ``MultiIndex.sortlevel`` (:issue:`9445`)
- Per... | from [here](http://stackoverflow.com/questions/29016093/pandas-pytable-memory-overhead-when-writing-to-hdf/29035532#29035532)
reduce memeory usage necessary for using `to_hdf`
- was copying always in astyping
- was ravelling then reshaping
- was constantly allocating a new chunked buffer, now re-uses the same buffer
... | https://api.github.com/repos/pandas-dev/pandas/pulls/9648 | 2015-03-13T18:27:16Z | 2015-03-16T00:07:22Z | 2015-03-16T00:07:22Z | 2019-04-22T07:41:24Z |
Allow clip{,_lower,_upper} to use array-like thresholds (GH 6966) | diff --git a/doc/source/whatsnew/v0.16.1.txt b/doc/source/whatsnew/v0.16.1.txt
index c0408c4123eab..b99f3e2cd7059 100755
--- a/doc/source/whatsnew/v0.16.1.txt
+++ b/doc/source/whatsnew/v0.16.1.txt
@@ -23,6 +23,7 @@ Enhancements
- Added ``StringMethods.capitalize()`` and ``swapcase`` which behave as the same as stand... | closes #6966
| https://api.github.com/repos/pandas-dev/pandas/pulls/9647 | 2015-03-13T16:55:41Z | 2015-04-28T11:56:04Z | 2015-04-28T11:56:04Z | 2015-09-19T00:38:04Z |
DOC: reorg whatsnew file v0.16.0 | diff --git a/doc/source/whatsnew/v0.16.0.txt b/doc/source/whatsnew/v0.16.0.txt
index d60fa718ae07c..2cb1df2cef202 100644
--- a/doc/source/whatsnew/v0.16.0.txt
+++ b/doc/source/whatsnew/v0.16.0.txt
@@ -7,75 +7,29 @@ This is a major release from 0.15.2 and includes a small number of API changes,
enhancements, and perfor... | No real edits, just some rearranging.
I added an automatic 'contents' in the beginning, so this gives all headers automatically, and in this way restricted the list in the beginning to just the highlights (then it can be copied exactly like this to the release notes in release.rst
| https://api.github.com/repos/pandas-dev/pandas/pulls/9644 | 2015-03-13T14:50:42Z | 2015-03-14T12:05:10Z | 2015-03-14T12:05:10Z | 2015-03-14T12:05:10Z |
DOC: fix some doc errors/warnings | diff --git a/doc/source/categorical.rst b/doc/source/categorical.rst
index 6ce93326f0e16..7fe04af716cec 100644
--- a/doc/source/categorical.rst
+++ b/doc/source/categorical.rst
@@ -386,9 +386,9 @@ categories or a categorical with any list-like object, will raise a TypeError.
.. ipython:: python
- cat = Series(C... | - `pd.read_csv('tmp2.sv', sep=None)` was given the warning "_ParserWarning: Falling back to the 'python' engine because the 'c' engine does not support sep=None with delim_whitespace=False; you can avoid this warning by specifying engine='python'_"
Is this correct? (assuming so I just added what the warning message... | https://api.github.com/repos/pandas-dev/pandas/pulls/9643 | 2015-03-13T14:07:44Z | 2015-03-14T20:57:01Z | 2015-03-14T20:57:01Z | 2015-03-14T20:57:02Z |
COMPAT: dtype fix for windows tests; ensure passing i8 to tslib/normalize | diff --git a/pandas/tseries/tests/test_resample.py b/pandas/tseries/tests/test_resample.py
index 3e565d5764fe2..c338bbeae79c7 100644
--- a/pandas/tseries/tests/test_resample.py
+++ b/pandas/tseries/tests/test_resample.py
@@ -884,7 +884,7 @@ def test_resmaple_dst_anchor(self):
dti = date_range('2013-09-30', '... | https://api.github.com/repos/pandas-dev/pandas/pulls/9642 | 2015-03-13T13:04:12Z | 2015-03-13T13:04:26Z | 2015-03-13T13:04:26Z | 2015-03-13T13:04:26Z |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.