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: various 32bit compat issues
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index e0d15c218ec85..09358f77c9c9e 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -824,6 +824,7 @@ Bug Fixes - Bug in ``pd.qcut()`` with a single quantile and an array with identical values (:issue:`15...
closes #14866 xref #14183
https://api.github.com/repos/pandas-dev/pandas/pulls/15766
2017-03-21T14:43:53Z
2017-03-21T17:41:03Z
null
2017-03-21T17:41:58Z
CLN: replace _interleave_dtype with _find_common_type
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index d036049e3ffdb..e0d15c218ec85 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -826,7 +826,7 @@ Bug Fixes - Bug in the display of ``.info()`` where a qualifier (+) would always be displayed with...
xref #15736 xref #12780
https://api.github.com/repos/pandas-dev/pandas/pulls/15765
2017-03-21T13:35:18Z
2017-03-21T14:50:13Z
null
2017-03-21T14:53:08Z
BUG: Series.asof fails for all NaN Series (GH15713)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index ebdd4060f0588..5a3b99d6bec0d 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -930,3 +930,5 @@ Bug Fixes - Bug in ``pd.melt()`` where passing a tuple value for ``value_vars`` caused a ``TypeError``...
- [x] closes bug #15713 - [x] 1 tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry Added the test if the series is all nans Added the code that check if that's the case: if yes, return the expected output As this is my first contribution, please comment if I ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15758
2017-03-21T03:05:24Z
2017-03-26T02:31:15Z
null
2017-03-26T04:01:09Z
MAINT: Drop convert_objects from NDFrame
diff --git a/doc/source/10min.rst b/doc/source/10min.rst index 8482eef552c17..81d48ff3bacb4 100644 --- a/doc/source/10min.rst +++ b/doc/source/10min.rst @@ -95,17 +95,16 @@ will be completed: df2.append df2.combine_first df2.apply df2.compound df2.applymap df2.consolidate ...
Deprecated since 0.17.0 xref #11173
https://api.github.com/repos/pandas-dev/pandas/pulls/15757
2017-03-21T01:46:21Z
2017-07-13T14:34:28Z
null
2017-07-13T14:49:37Z
ENH: support "nrows" and "chunksize" together
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index d036049e3ffdb..2be809fbf548d 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -291,6 +291,7 @@ Other enhancements - ``Series`` provides a ``to_excel`` method to output Excel files (:issue:`8825`) ...
- [x] closes #15755 - [x] tests added / passed - [x] passes ``git diff master | flake8 --diff`` (except for ``whatsnew/v0.20.0.txt``, I don't know why) - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15756
2017-03-21T00:41:13Z
2017-03-21T18:06:01Z
null
2017-03-21T18:54:48Z
DOC: Patch new flake8 command grep
diff --git a/doc/source/contributing.rst b/doc/source/contributing.rst index 7961780d0c79b..7ad5916a8809d 100644 --- a/doc/source/contributing.rst +++ b/doc/source/contributing.rst @@ -527,7 +527,12 @@ unused function. However, style-checking the diff will not catch this because the actual import is not part of the di...
The grep was initially matching to "pandas," which is incorrect because that was also matching files containing "pandas" in the name but that were not in the main `pandas` directory (e.g. performance test code). This change enforces that we match to any Python files in the main `pandas` directory. Also picked up co...
https://api.github.com/repos/pandas-dev/pandas/pulls/15749
2017-03-20T19:01:50Z
2017-03-20T19:39:25Z
null
2017-03-21T00:39:14Z
MAINT: Remove Long and WidePanel
diff --git a/asv_bench/benchmarks/pandas_vb_common.py b/asv_bench/benchmarks/pandas_vb_common.py index 56ccc94c414fb..a7e530e7f5ef1 100644 --- a/asv_bench/benchmarks/pandas_vb_common.py +++ b/asv_bench/benchmarks/pandas_vb_common.py @@ -25,11 +25,6 @@ except: pass -try: - Panel = Panel -except Except...
Deprecated since 0.17.0. xref #10892
https://api.github.com/repos/pandas-dev/pandas/pulls/15748
2017-03-20T18:26:53Z
2017-03-20T19:47:49Z
2017-03-20T19:47:49Z
2017-03-21T00:39:17Z
Return mode even if single value (#15714)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 29d05ddcfb497..66de10c84ff36 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -924,3 +924,4 @@ Bug Fixes - Bug in ``pd.melt()`` where passing a tuple value for ``value_vars`` caused a ``TypeError``...
- [X] Please accept this PR which closes #15714 - [X] Tests added — `test_mode_single` - [X] Passes ``git diff upstream/master | flake8 --diff`` (however: it complains about some non-changed rows in hashtable_func_helper.pxi.in)
https://api.github.com/repos/pandas-dev/pandas/pulls/15744
2017-03-20T15:59:20Z
2017-03-29T23:53:57Z
null
2017-03-29T23:54:14Z
BUG: replace coerces incorrect dtype
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index af0d0d7b04475..7c78132232077 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -823,6 +823,7 @@ Bug Fixes - Bug in the display of ``.info()`` where a qualifier (+) would always be displayed with...
closes #12747 Author: sinhrks <sinhrks@gmail.com> This patch had conflicts when merged, resolved by Committer: Jeff Reback <jeff@reback.net> closes #15742 Closes #12780 from sinhrks/replace_type and squashes the following commits: f9154e8 [sinhrks] remove unnecessary comments 279fdf6 [sinhrks] remove imp...
https://api.github.com/repos/pandas-dev/pandas/pulls/15742
2017-03-20T14:22:06Z
2017-03-20T16:25:54Z
2017-03-20T16:25:53Z
2017-03-20T17:22:51Z
BUG: .replace coerces incorrect dtype
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index af0d0d7b04475..7c78132232077 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -823,6 +823,7 @@ Bug Fixes - Bug in the display of ``.info()`` where a qualifier (+) would always be displayed with...
closes #12747 supersedes 12780
https://api.github.com/repos/pandas-dev/pandas/pulls/15741
2017-03-20T14:17:19Z
2017-03-20T14:17:36Z
null
2017-03-20T14:17:36Z
BUG: tz aware Timestamp field accessors returns local values (#13303)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 680aefc4041fb..0fe6cc34c2f70 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -796,6 +796,7 @@ Bug Fixes ~~~~~~~~~ - Bug in ``Timestamp.replace`` now raises ``TypeError`` when incorrect argument...
- [x] closes #13303 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry Previously, calling a date/time attribute with Timestamp that's tz aware (e.g. `Timestamp('...', tz='...').dayofyear`) would return the attribute in UTC instead of the local tz.
https://api.github.com/repos/pandas-dev/pandas/pulls/15740
2017-03-20T06:20:20Z
2017-03-20T17:51:28Z
null
2017-12-20T02:00:47Z
DOC: Fix typo in docstring param name
diff --git a/pandas/tseries/holiday.py b/pandas/tseries/holiday.py index d3d936693c266..9acb52ebe0e9f 100644 --- a/pandas/tseries/holiday.py +++ b/pandas/tseries/holiday.py @@ -365,7 +365,7 @@ def holidays(self, start=None, end=None, return_name=False): ---------- start : starting date, datetime-like,...
https://api.github.com/repos/pandas-dev/pandas/pulls/15739
2017-03-20T05:45:44Z
2017-03-20T08:13:53Z
2017-03-20T08:13:53Z
2017-03-20T08:14:00Z
PERF: Improve drop_duplicates for bool columns (#12963)
diff --git a/asv_bench/benchmarks/reindex.py b/asv_bench/benchmarks/reindex.py index 6fe6c32a96df9..537d275e7c727 100644 --- a/asv_bench/benchmarks/reindex.py +++ b/asv_bench/benchmarks/reindex.py @@ -132,6 +132,9 @@ def setup(self): self.K = 10000 self.key1 = np.random.randint(0, self.K, size=self.N)...
- [x] closes #12963 - [x] tests passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry Converts `bool` columns to `int` when calling `drop_duplicates()` so the factorization does not go down the `object` path. ``` before after ratio [9ab57dc5] ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15738
2017-03-20T02:05:03Z
2017-03-20T22:47:22Z
null
2017-12-20T02:00:38Z
Value returns ndarray for dataframes with a single column with datetime64 tz-aware
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index a56212328f5c3..ae0f2181a9850 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -792,6 +792,7 @@ Performance Improvements Bug Fixes ~~~~~~~~~ +- Bug in ``DataFrame.values`` now returns object dtyp...
- [x] closes #14052 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15736
2017-03-19T20:08:37Z
2017-07-26T23:57:53Z
null
2017-07-26T23:57:54Z
MAINT: Drop order and sort from pandas objects
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 4949b68d46723..680aefc4041fb 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -771,6 +771,7 @@ Removal of prior version deprecations/changes - The deprecated ``DataFrame.iterkv()`` has been removed...
Affected classes: 1) `Index` 2) `Series` 2) `DataFrame` xref #10726
https://api.github.com/repos/pandas-dev/pandas/pulls/15735
2017-03-19T01:16:36Z
2017-03-19T02:02:21Z
2017-03-19T02:02:21Z
2017-03-19T02:08:50Z
TST: clean up build testing
diff --git a/.travis.yml b/.travis.yml index 88e1655363a4e..705b2380ac697 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,6 @@ matrix: - PYTHON_VERSION=3.5 - JOB_NAME: "35_osx" - TEST_ARGS="--skip-slow --skip-network" - - BUILD_TYPE=conda - JOB_TAG=_OSX - TRAV...
https://api.github.com/repos/pandas-dev/pandas/pulls/15734
2017-03-18T23:38:48Z
2017-03-19T02:00:54Z
null
2017-03-19T02:01:31Z
CI: turn on cache for osx
diff --git a/.travis.yml b/.travis.yml index cafe46059e6c0..88e1655363a4e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,6 +28,7 @@ matrix: os: osx compiler: clang osx_image: xcode6.4 + cache: ccache env: - PYTHON_VERSION=3.5 - JOB_NAME: "35_osx" diff --git a/ci/sub...
https://api.github.com/repos/pandas-dev/pandas/pulls/15733
2017-03-18T16:50:20Z
2017-03-18T16:50:27Z
2017-03-18T16:50:27Z
2017-03-18T16:50:27Z
TST: move conftest.py to top-level
diff --git a/pandas/conftest.py b/conftest.py similarity index 100% rename from pandas/conftest.py rename to conftest.py diff --git a/pandas/tests/api/test_api.py b/pandas/tests/api/test_api.py index 73222c246fc70..2972427f1b245 100644 --- a/pandas/tests/api/test_api.py +++ b/pandas/tests/api/test_api.py @@ -29,7 +29,7...
xref #15341
https://api.github.com/repos/pandas-dev/pandas/pulls/15731
2017-03-18T15:46:43Z
2017-03-18T16:01:20Z
2017-03-18T16:01:20Z
2017-03-21T00:14:28Z
CI: remove 3.5 appveyor build
diff --git a/appveyor.yml b/appveyor.yml index 1c14698430996..5d748ddf1a108 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -30,13 +30,6 @@ environment: CONDA_PY: "27" CONDA_NPY: "110" - - CONDA_ROOT: "C:\\Miniconda3_64" - PYTHON_VERSION: "3.5" - PYTHON_ARCH: "64" - CONDA_PY: "35" - ...
not really necessary & just makes the building take longer
https://api.github.com/repos/pandas-dev/pandas/pulls/15730
2017-03-18T15:45:35Z
2017-03-18T16:02:10Z
2017-03-18T16:02:10Z
2017-03-18T16:02:10Z
DOC: Fix typos in merge_asof() docstring
diff --git a/pandas/tools/merge.py b/pandas/tools/merge.py index 261884bba54bd..60d523a8ea539 100644 --- a/pandas/tools/merge.py +++ b/pandas/tools/merge.py @@ -295,7 +295,7 @@ def merge_asof(left, right, on=None, - A "nearest" search selects the row in the right DataFrame whose 'on' key is closest in a...
https://api.github.com/repos/pandas-dev/pandas/pulls/15729
2017-03-18T03:29:38Z
2017-03-18T03:32:47Z
2017-03-18T03:32:47Z
2017-03-18T04:00:32Z
CI: install nomkl to speed building
diff --git a/.travis.yml b/.travis.yml index c1419dd0c5d3b..cafe46059e6c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -74,7 +74,7 @@ matrix: - CLIPBOARD=xsel - COVERAGE=true - CACHE_NAME="35_nslow" -# - USE_CACHE=true # Don't use cache for 35_nslow + - USE_CACHE=true ad...
https://api.github.com/repos/pandas-dev/pandas/pulls/15728
2017-03-18T02:10:56Z
2017-03-18T02:51:36Z
2017-03-18T02:51:36Z
2017-03-18T02:51:36Z
CI: remove caching for miniconda itself
diff --git a/.travis.yml b/.travis.yml index af3098b3fc715..c1419dd0c5d3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,6 @@ language: python # The cash directories will be deleted if anything in ci/ changes in a commit cache: directories: - - $HOME/miniconda3 # miniconda cache - $HOME/.cache # cython c...
well got this to work, and it *does* cache, but the cache file is so huge that its just not worth it. going back to clean installs for miniconda itself.
https://api.github.com/repos/pandas-dev/pandas/pulls/15722
2017-03-17T17:10:53Z
2017-03-17T17:11:56Z
2017-03-17T17:11:56Z
2017-03-17T17:11:56Z
DOC: Update broken link in cookbook.rst #15605
diff --git a/doc/source/cookbook.rst b/doc/source/cookbook.rst index 841195de3da47..8fa1283ffc924 100644 --- a/doc/source/cookbook.rst +++ b/doc/source/cookbook.rst @@ -905,7 +905,7 @@ CSV The :ref:`CSV <io.read_csv_table>` docs -`read_csv in action <http://wesmckinney.com/blog/?p=635>`__ +`read_csv in action <htt...
- [ ] closes #15605 - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15720
2017-03-17T15:39:33Z
2017-03-17T15:42:26Z
null
2018-12-12T21:40:25Z
TST: only catch deprecation warnings for top-level module imports
diff --git a/pandas/tests/api/test_api.py b/pandas/tests/api/test_api.py index db92210478182..73222c246fc70 100644 --- a/pandas/tests/api/test_api.py +++ b/pandas/tests/api/test_api.py @@ -249,31 +249,26 @@ def test_groupby(self): class TestJson(tm.TestCase): def test_deprecation_access_func(self): - wit...
https://api.github.com/repos/pandas-dev/pandas/pulls/15718
2017-03-17T14:58:28Z
2017-03-17T14:58:35Z
2017-03-17T14:58:35Z
2017-03-21T00:18:42Z
DOC: Add gotcha about flake8-ing diff
diff --git a/doc/source/contributing.rst b/doc/source/contributing.rst index 83f99b4f01b26..7961780d0c79b 100644 --- a/doc/source/contributing.rst +++ b/doc/source/contributing.rst @@ -520,6 +520,15 @@ submitting code to run the check yourself on the diff:: git diff master | flake8 --diff +This command will cat...
The `flake8`-ing the diff will not catch any import style errors. I put an alternative check that is more comprehensive but will take longer to run since you will be checking entire files instead of the diff.
https://api.github.com/repos/pandas-dev/pandas/pulls/15712
2017-03-17T05:29:23Z
2017-03-17T12:51:41Z
null
2017-03-17T13:11:44Z
BUG: TZ-aware Series.where() appropriately handles default other=nan (#15701)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index a56212328f5c3..29d05ddcfb497 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -829,6 +829,7 @@ Bug Fixes - Bug in ``DataFrame.isin`` comparing datetimelike to empty frame (:issue:`15473`) - Bug ...
- [x] closes #15701 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15711
2017-03-17T04:07:18Z
2017-03-17T13:11:05Z
null
2017-03-17T13:23:43Z
MAINT: Drop take_last kwarg from method signatures
diff --git a/asv_bench/benchmarks/series_methods.py b/asv_bench/benchmarks/series_methods.py index 413c4e044fd3a..c66654ee1e006 100644 --- a/asv_bench/benchmarks/series_methods.py +++ b/asv_bench/benchmarks/series_methods.py @@ -68,8 +68,8 @@ def setup(self): self.s4 = self.s3.astype('object') def time_...
Affected methods: 1) `nlargest` 2) `nsmallest` 3) `duplicated` 4) `drop_duplicates` xref #10236, #10792, #10920.
https://api.github.com/repos/pandas-dev/pandas/pulls/15710
2017-03-17T00:52:22Z
2017-03-18T00:13:21Z
null
2017-03-18T01:27:14Z
TST: Reorganize package_check and skip_if_no_package
diff --git a/pandas/tests/io/test_pytables.py b/pandas/tests/io/test_pytables.py index 5592c564e51df..8ea8088a297b8 100644 --- a/pandas/tests/io/test_pytables.py +++ b/pandas/tests/io/test_pytables.py @@ -728,7 +728,8 @@ def test_put_compression(self): format='fixed', complib='zlib') ...
`skip_if_no_package` literally just calls `package_check` with no additional decorations and with confusing `*args` and `**kwargs`. However, `skip_if_no_package` is a better name than `package_check`.
https://api.github.com/repos/pandas-dev/pandas/pulls/15709
2017-03-17T00:51:16Z
2017-03-17T12:50:27Z
2017-03-17T12:50:27Z
2017-03-17T13:11:46Z
TST: remove rest of yield warnings
diff --git a/pandas/tests/formats/test_format.py b/pandas/tests/formats/test_format.py index b1f163ccf9429..44a7f2b45e759 100644 --- a/pandas/tests/formats/test_format.py +++ b/pandas/tests/formats/test_format.py @@ -1392,24 +1392,26 @@ def test_repr_html_long(self): assert u('2 columns') in long_repr d...
xref https://github.com/pandas-dev/pandas/issues/15341
https://api.github.com/repos/pandas-dev/pandas/pulls/15708
2017-03-17T00:41:09Z
2017-03-17T14:08:49Z
2017-03-17T14:08:49Z
2017-03-17T15:03:20Z
TST: move pandas/tests/io/test_date_converters.py to pandas/tests/io/parsers/parse_dates.py
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index a56212328f5c3..6791b52836cbe 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -727,6 +727,7 @@ Other API Changes - ``Series.sort_values()`` accepts a one element list of bool for consistency with t...
- [x] closes #15519 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry How can I run tests on `parse_dates.py`? I am getting `ValueError: no option named 'only_slow'` with `item.config.getoption("--only-slow"):`
https://api.github.com/repos/pandas-dev/pandas/pulls/15707
2017-03-16T23:30:51Z
2017-03-18T02:00:51Z
null
2017-03-20T21:21:46Z
TST: don't catch, but supress warnings in panel4d/panelnd
diff --git a/pandas/core/categorical.py b/pandas/core/categorical.py index c1e5904693d1c..af51c7f2e2dc1 100644 --- a/pandas/core/categorical.py +++ b/pandas/core/categorical.py @@ -550,8 +550,8 @@ def _validate_categories(cls, categories, fastpath=False): # we don't allow NaNs in the categories themselves ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15705
2017-03-16T22:12:47Z
2017-03-17T13:06:27Z
2017-03-17T13:06:27Z
2017-03-17T13:07:05Z
MAINT: test with manylinux numpy/scipy pre-release
diff --git a/.travis.yml b/.travis.yml index b0331941e2a1e..ee093e5bf0e60 100644 --- a/.travis.yml +++ b/.travis.yml @@ -123,11 +123,6 @@ matrix: - PANDAS_TESTING_MODE="deprecate" - CACHE_NAME="35_numpy_dev" - USE_CACHE=true - addons: - apt: - packages: - - libat...
Numpy / Scipy switching to daily manylinux wheels of trunk, instead of building wheels specific to Ubuntu 12.04 for every commit. Use these new wheels for numpy and scipy pre-release testing. See: #15699, #15689 and https://github.com/scipy/scipy/issues/7188.
https://api.github.com/repos/pandas-dev/pandas/pulls/15702
2017-03-16T17:56:21Z
2017-03-16T19:12:09Z
2017-03-16T19:12:09Z
2017-03-17T07:01:30Z
ENH: support for removing unused levels of a MultiIndex (interally)
diff --git a/asv_bench/benchmarks/timeseries.py b/asv_bench/benchmarks/timeseries.py index 6e9ef4b10273c..dfe3f0ef87c11 100644 --- a/asv_bench/benchmarks/timeseries.py +++ b/asv_bench/benchmarks/timeseries.py @@ -292,7 +292,10 @@ def setup(self): self.rng3 = date_range(start='1/1/2000', periods=1500000, freq='...
on top of #15694 xref #2770 Here's an example of what we could do with this ``` In [1]: df = pd.DataFrame({'value': [1, 2, 3, 4]}, index=pd.MultiIndex( ...: levels=[['a', 'b'], ['bb', 'aa']], ...: labels=[[0, 0, 1, 1], [0, 1, 0, 1]])) In [2]: df Out[2]: value a bb...
https://api.github.com/repos/pandas-dev/pandas/pulls/15700
2017-03-16T16:31:28Z
2017-03-22T22:32:24Z
null
2017-03-22T22:33:07Z
CI: remove dev-scipy from testing on numpy-dev build as really old sheels
diff --git a/ci/requirements-3.5_NUMPY_DEV.build.sh b/ci/requirements-3.5_NUMPY_DEV.build.sh index 91fa15491bbf7..b6c8a477e6f5e 100644 --- a/ci/requirements-3.5_NUMPY_DEV.build.sh +++ b/ci/requirements-3.5_NUMPY_DEV.build.sh @@ -8,6 +8,6 @@ echo "install numpy master wheel" pip uninstall numpy -y # install numpy wh...
closes #15696
https://api.github.com/repos/pandas-dev/pandas/pulls/15699
2017-03-16T15:58:52Z
2017-03-16T16:20:37Z
2017-03-16T16:20:37Z
2017-03-16T16:20:38Z
BUG: DataFrame.sort_index broken if not both lexsorted and monotonic in levels
diff --git a/asv_bench/benchmarks/timeseries.py b/asv_bench/benchmarks/timeseries.py index 6e9ef4b10273c..dfe3f0ef87c11 100644 --- a/asv_bench/benchmarks/timeseries.py +++ b/asv_bench/benchmarks/timeseries.py @@ -292,7 +292,10 @@ def setup(self): self.rng3 = date_range(start='1/1/2000', periods=1500000, freq='...
closes #15622 closes #15687 closes #14015 closes #13431 nice bump on Series.sort_index for monotonic ``` before after ratio [37e5f78b] [a6f352c0] - 1.86ms 100.07μs 0.05 timeseries.TimeSeries.time_sort_index_monotonic ```
https://api.github.com/repos/pandas-dev/pandas/pulls/15694
2017-03-15T23:09:07Z
2017-04-07T15:18:25Z
null
2017-04-07T15:19:55Z
ENH: use constant f32 eps, not np.finfo() during import
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 9c6f5d3e0596d..f0bfd6a86abc3 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -920,3 +920,4 @@ Bug Fixes - Bug in ``pd.melt()`` where passing a tuple value for ``value_vars`` caused a ``TypeError``...
NumPy docs for `np.finfo()` say not to call it during import (at module scope). It's a relatively expensive call, and it modifies the GIL state. Now we just hard-code it, because it is always the value anyway. This avoids touching the GIL at import, which helps avoid deadlocks in practice. - [x] closes #14641 ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15691
2017-03-15T12:52:54Z
2017-03-15T16:05:50Z
null
2017-03-15T16:17:44Z
compatibility with scipy 0.19
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 9c6f5d3e0596d..c3fd484d2bc9c 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -308,6 +308,7 @@ Other enhancements - ``pd.types.concat.union_categoricals`` gained the ``ignore_ordered`` argument to ...
fix #15662
https://api.github.com/repos/pandas-dev/pandas/pulls/15689
2017-03-14T18:52:27Z
2017-03-15T13:30:35Z
null
2017-03-16T16:17:05Z
BUG: Group-by numeric type-coercion with datetime
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 8a4f2f47b9853..ce5111e2725e2 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -886,3 +886,4 @@ Bug Fixes - Bug in ``pd.melt()`` where passing a tuple value for ``value_vars`` caused a ``TypeError``...
closes #14423 closes #15421 closes #15670 During a group-by/apply on a DataFrame, in the presence of one or more DateTime-like columns, Pandas would incorrectly coerce the type of all other columns to numeric. E.g. a String column would be coerced to numeric, producing NaNs.
https://api.github.com/repos/pandas-dev/pandas/pulls/15680
2017-03-14T10:57:12Z
2017-03-16T12:08:59Z
null
2017-03-16T12:08:59Z
BUG: Allow multiple 'by' parameters in merge_asof() when DataFrames are indexed (#15676)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 8a4f2f47b9853..10106845b08a9 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -851,6 +851,7 @@ Bug Fixes - Bug in the HTML display with with a ``MultiIndex`` and truncation (:issue:`14882`) +- ...
- [x] closes #15676 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15679
2017-03-14T02:28:02Z
2017-03-14T14:06:40Z
null
2017-03-14T14:11:13Z
CLN: push key coercion to the indexes with Index._convert_list_indexer
diff --git a/pandas/core/indexing.py b/pandas/core/indexing.py index 546cbd8337e7e..19b7771251da3 100755 --- a/pandas/core/indexing.py +++ b/pandas/core/indexing.py @@ -7,7 +7,6 @@ from pandas.types.generic import ABCDataFrame, ABCPanel, ABCSeries from pandas.types.common import (is_integer_dtype, ...
CLN: push key coercion to the indexes themselves to simplify a bit
https://api.github.com/repos/pandas-dev/pandas/pulls/15678
2017-03-13T22:21:37Z
2017-03-13T23:49:43Z
2017-03-13T23:49:43Z
2017-03-13T23:50:39Z
API: df.rolling(..).corr()/cov() when pairwise=True to return MI DataFrame
diff --git a/doc/source/computation.rst b/doc/source/computation.rst index 57480a244f308..315dd122b96cc 100644 --- a/doc/source/computation.rst +++ b/doc/source/computation.rst @@ -505,13 +505,18 @@ two ``Series`` or any combination of ``DataFrame/Series`` or - ``DataFrame/DataFrame``: by default compute the statistic...
from https://github.com/pandas-dev/pandas/pull/15601#issuecomment-284927333. Unfortunately I don't see an easy way to even deprecate this and we simply have to switch. Good news is this will simply fail fast in accessing, as the ``Panels`` have a different access pattern (names of indices and indexing) that MI DataF...
https://api.github.com/repos/pandas-dev/pandas/pulls/15677
2017-03-13T20:35:42Z
2017-04-07T00:36:04Z
null
2017-06-24T13:18:21Z
TST: fix errant tight_layout test
diff --git a/pandas/tests/plotting/common.py b/pandas/tests/plotting/common.py index 92e2dc7b5d934..c31d8b539ae6f 100644 --- a/pandas/tests/plotting/common.py +++ b/pandas/tests/plotting/common.py @@ -53,6 +53,7 @@ def setUp(self): self.mpl_ge_1_4_0 = plotting._mpl_ge_1_4_0() self.mpl_ge_1_5_0 = plott...
closes #9351
https://api.github.com/repos/pandas-dev/pandas/pulls/15671
2017-03-13T15:16:04Z
2017-03-13T23:04:39Z
2017-03-13T23:04:39Z
2017-03-14T18:25:26Z
CI: use conda-forge on 3.6 build
diff --git a/.travis.yml b/.travis.yml index 97bf881f3b6fc..b0331941e2a1e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -86,6 +86,7 @@ matrix: - JOB_NAME: "36" - TEST_ARGS="--skip-slow --skip-network" - PANDAS_TESTING_MODE="deprecate" + - CONDA_FORGE=true addons: apt: ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15668
2017-03-12T22:37:15Z
2017-03-13T00:53:20Z
null
2017-03-13T00:53:20Z
Fix another typo in the timeseries documentation
diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index c0c178ad2fb49..7136b15a7633a 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -607,7 +607,7 @@ There are several time/date properties that one can access from ``Timestamp`` or dayofyear,"The ordinal day of year" ...
Just noticed this right after #15666 was merged.
https://api.github.com/repos/pandas-dev/pandas/pulls/15667
2017-03-12T20:59:36Z
2017-03-12T22:40:06Z
2017-03-12T22:40:05Z
2017-03-12T22:40:09Z
Fix typo in timeseries documentation
diff --git a/doc/source/timeseries.rst b/doc/source/timeseries.rst index e09d240ed91b7..c0c178ad2fb49 100644 --- a/doc/source/timeseries.rst +++ b/doc/source/timeseries.rst @@ -610,7 +610,7 @@ There are several time/date properties that one can access from ``Timestamp`` or dayofweek,"The numer of the day of the we...
https://api.github.com/repos/pandas-dev/pandas/pulls/15666
2017-03-12T20:41:09Z
2017-03-12T20:55:33Z
2017-03-12T20:55:33Z
2017-03-12T21:09:39Z
COMPAT: free parser memory at close() for non-refcnt gc
diff --git a/pandas/_libs/src/parser/tokenizer.c b/pandas/_libs/src/parser/tokenizer.c index 916f06d357473..6b0775e54da0c 100644 --- a/pandas/_libs/src/parser/tokenizer.c +++ b/pandas/_libs/src/parser/tokenizer.c @@ -162,6 +162,7 @@ int parser_cleanup(parser_t *self) { if (self->cb_cleanup(self->source) < 0) {...
relying on ``__dealloc__`` to clean up ``malloc()``ed memory can lead to a perceived "leak" on PyPy since the garbage collector will not necessarily collect the object as soon as its ``refcnt`` reaches 0. Instead, pre-emptively release memory when ``close()`` is called The code still maintains backward compatibi...
https://api.github.com/repos/pandas-dev/pandas/pulls/15665
2017-03-12T18:20:08Z
2017-03-13T00:56:17Z
null
2017-03-13T00:56:21Z
Merge pull request #1 from pydata/master
11/24/2015 - [ ] closes #xxxx - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15659
2017-03-12T03:53:34Z
2017-03-12T03:54:48Z
null
2017-03-12T03:55:13Z
CLN: Cleanup tests for .rank()
diff --git a/pandas/tests/frame/test_analytics.py b/pandas/tests/frame/test_analytics.py index 4758ee1323ca0..6c917444f9f43 100644 --- a/pandas/tests/frame/test_analytics.py +++ b/pandas/tests/frame/test_analytics.py @@ -2,7 +2,7 @@ from __future__ import print_function -from datetime import timedelta, datetime +f...
Moves `rank` tests for `DataFrame` and `Series` to respective test suites. 1. Created new `pandas/tests/series/test_rank` and `pandas/tests/frame/test_rank` 2. Moved tests from `pandas/tests/test_stats` to `series` and `frame` version of `test_rank` 3. Moved `rank` tests from `frame/test_analytics` to `frame/test_...
https://api.github.com/repos/pandas-dev/pandas/pulls/15658
2017-03-12T01:37:02Z
2017-03-12T15:16:30Z
null
2017-03-12T15:16:30Z
Subclassed reshape clean
diff --git a/doc/source/internals.rst b/doc/source/internals.rst index 3d96b93de4cc9..6a3a0e7c766b7 100644 --- a/doc/source/internals.rst +++ b/doc/source/internals.rst @@ -9,6 +9,7 @@ np.random.seed(123456) np.set_printoptions(precision=4, suppress=True) import pandas as pd + from pandas import Series, D...
- [x] closes #15563 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry This PR enables reshape operations on subclassed `DataFrame` and `Series` objects to preserve subclass families through the use of `_constructor*` properties. See discussion on PR ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15655
2017-03-11T20:21:12Z
2017-07-26T23:57:28Z
null
2017-07-26T23:57:28Z
API: Drop the name parameter from Categorical
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index e392023423eb0..f6d5e3df814fc 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -734,7 +734,7 @@ Removal of prior version deprecations/changes - The deprecated ``irow``, ``icol``, ``iget`` and ``iget...
Deprecated in 0.17.0 xref #10632
https://api.github.com/repos/pandas-dev/pandas/pulls/15654
2017-03-11T06:49:06Z
2017-03-11T17:21:58Z
null
2017-03-11T18:57:24Z
ENH: Provide an errors parameter to fillna
diff --git a/pandas/core/dtypes/common.py b/pandas/core/dtypes/common.py index bfec1ec3ebe8c..e7ecd829f344c 100644 --- a/pandas/core/dtypes/common.py +++ b/pandas/core/dtypes/common.py @@ -1909,3 +1909,27 @@ def pandas_dtype(dtype): raise TypeError('dtype {0} not understood'.format(dtype)) return npdtyp...
- [ ] progress towards #15533 - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15653
2017-03-11T01:47:44Z
2017-08-17T10:31:07Z
null
2017-08-17T10:31:07Z
MAINT: Remove testing.assert_isinstance
diff --git a/pandas/tests/test_testing.py b/pandas/tests/test_testing.py index 2fb58ef70e3cb..e5cb953cb35a5 100644 --- a/pandas/tests/test_testing.py +++ b/pandas/tests/test_testing.py @@ -765,9 +765,6 @@ def test_warning(self): with tm.assert_produces_warning(FutureWarning, check_stacklevel=False): ...
Deprecated in 0.17.0 xref #10458
https://api.github.com/repos/pandas-dev/pandas/pulls/15652
2017-03-11T01:15:31Z
2017-03-11T17:24:11Z
2017-03-11T17:24:11Z
2017-03-11T18:57:22Z
API: Drop DataFrame.iterkv()
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index dd081ea605c01..3be2eb02038a2 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -692,6 +692,7 @@ Other API Changes - Reorganization of timeseries development tests (:issue:`14854`) - Specific suppor...
Deprecated since 0.17.0 xref #10711
https://api.github.com/repos/pandas-dev/pandas/pulls/15650
2017-03-10T18:47:45Z
2017-03-10T21:29:31Z
null
2017-03-10T21:31:07Z
0.19.x
diff --git a/.gitignore b/.gitignore index 19f1cc804dca0..a77e780f3332d 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ *.class *.dll *.exe +*.pxi *.o *.py[ocd] *.so diff --git a/.travis.yml b/.travis.yml index 4eefd6ca83694..49765c9df96ea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,7 @@ ma...
- [ ] closes #xxxx - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15648
2017-03-10T16:56:07Z
2017-03-10T21:22:34Z
null
2017-03-10T21:22:35Z
DOC: doc warnings
diff --git a/doc/source/index.rst.template b/doc/source/index.rst.template index 67072ff9fb224..0bfb2b635f53a 100644 --- a/doc/source/index.rst.template +++ b/doc/source/index.rst.template @@ -116,7 +116,6 @@ See the package overview for more detail about what's in the library. whatsnew install contribut...
https://api.github.com/repos/pandas-dev/pandas/pulls/15647
2017-03-10T11:47:29Z
2017-03-10T14:25:06Z
null
2017-03-10T23:36:57Z
DOC GH15643 Removed pytest-xdist from requirements_dev.txt file
diff --git a/ci/requirements_dev.txt b/ci/requirements_dev.txt index b0a8adc8df5cb..1e051802ec9f8 100644 --- a/ci/requirements_dev.txt +++ b/ci/requirements_dev.txt @@ -4,5 +4,4 @@ numpy cython pytest pytest-cov -pytest-xdist flake8
- [ x] closes #15643 - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15646
2017-03-10T10:30:48Z
2017-03-10T12:07:11Z
2017-03-10T12:07:10Z
2017-03-13T06:42:03Z
remove useless semicolons
diff --git a/doc/source/visualization.rst b/doc/source/visualization.rst index e8998bf6f6f5c..4a220193f6da0 100644 --- a/doc/source/visualization.rst +++ b/doc/source/visualization.rst @@ -131,7 +131,7 @@ For example, a bar plot can be created the following way: .. ipython:: python - plt.figure(); + plt.figure...
Some semicolons were used without reason.
https://api.github.com/repos/pandas-dev/pandas/pulls/15645
2017-03-10T09:47:25Z
2017-03-10T10:18:56Z
null
2017-03-10T10:49:08Z
BUG: Incorrect value updating for groupby.cummin/max (#15635)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index cf3dddc3a2933..47aa4450b897f 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -716,7 +716,7 @@ Performance Improvements - Increased performance of ``pd.factorize()`` by releasing the GIL with ``obj...
- [x] closes #15635 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` Nice catch @adbull. The original implementation was incorrectly setting the incorrect cummin/max value.
https://api.github.com/repos/pandas-dev/pandas/pulls/15642
2017-03-10T05:47:17Z
2017-03-10T11:40:10Z
null
2017-12-20T02:00:54Z
DOC: increase recursion limit on sphinx builds
diff --git a/doc/source/conf.py b/doc/source/conf.py index 6840f76866d2c..0b0de16411e9b 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -16,6 +16,14 @@ import inspect from pandas.compat import u, PY3 +# https://github.com/sphinx-doc/sphinx/pull/2325/files +# Workaround for sphinx-build recursion limit o...
xref https://github.com/pandas-dev/pandas/pull/15637#issuecomment-285558452 hopefully should eliminate the non-deterministic pickle errors in doc-building :<
https://api.github.com/repos/pandas-dev/pandas/pulls/15641
2017-03-10T03:05:27Z
2017-03-10T08:24:37Z
2017-03-10T08:24:37Z
2017-03-10T08:26:11Z
BUG: Dense ranking with percent now uses 100% basis
diff --git a/doc/source/whatsnew/v0.23.0.txt b/doc/source/whatsnew/v0.23.0.txt index 233816600ec0f..bb513605b1c94 100644 --- a/doc/source/whatsnew/v0.23.0.txt +++ b/doc/source/whatsnew/v0.23.0.txt @@ -907,6 +907,7 @@ Offsets Numeric ^^^^^^^ +- Bug in :meth:`DataFrame.rank` and :meth:`Series.rank` when ``method='den...
- `DataFrame.rank()` and `Series.rank()` when `method='dense'` and `pct=True` now scales to 100%. See #15630 - [ ] closes #15630 - [ ] tests added / passed - [X] passes ``git diff upstream/master | flake8 --diff`` - [X] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15639
2017-03-10T01:09:51Z
2018-03-09T00:54:54Z
2018-03-09T00:54:54Z
2018-03-09T00:55:02Z
DEPR: remove more .ix warnings from tests
diff --git a/pandas/tests/indexing/common.py b/pandas/tests/indexing/common.py index 73167393cf35d..c7637a00910c6 100644 --- a/pandas/tests/indexing/common.py +++ b/pandas/tests/indexing/common.py @@ -1,5 +1,262 @@ """ common utilities """ +import itertools +from warnings import catch_warnings +import numpy as np + ...
I think we had a filter somewhere that simply turned these off (in another test module)
https://api.github.com/repos/pandas-dev/pandas/pulls/15638
2017-03-10T00:02:22Z
2017-03-10T11:20:43Z
null
2017-03-10T11:21:18Z
DOC: remove latex and parallel building
diff --git a/ci/build_docs.sh b/ci/build_docs.sh index 5dc649a91c4f7..bfe7a1eed756b 100755 --- a/ci/build_docs.sh +++ b/ci/build_docs.sh @@ -23,9 +23,6 @@ if [ x"$DOC_BUILD" != x"" ]; then source activate pandas - # install sudo deps - time sudo apt-get $APT_ARGS install dvipng texlive-latex-base texlive...
https://api.github.com/repos/pandas-dev/pandas/pulls/15637
2017-03-09T21:03:45Z
2017-03-09T23:15:03Z
2017-03-09T23:15:03Z
2017-03-10T02:51:36Z
DOC: add example for DataFrame.resample: keywords on and level
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index ff58a2aa77447..e89f56ae04226 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -4460,6 +4460,30 @@ def resample(self, rule, how=None, axis=0, fill_method=None, closed=None, 2000-01-01 00:06:00 26 Freq: 3T, dtype: i...
- [ ] closes #xxxx add examples for DataFrame specific keywords: on and level. This can possibly fix issue #14843 See attached picture for details ![screenshot - 080317 - 21 34 00](https://cloud.githubusercontent.com/assets/10461030/23722782/fad80f30-0446-11e7-8ebe-e0caff835f01.png)
https://api.github.com/repos/pandas-dev/pandas/pulls/15627
2017-03-08T20:36:11Z
2017-03-09T07:57:27Z
2017-03-09T07:57:27Z
2017-03-09T08:07:51Z
DOC: make it possible to run doctests
diff --git a/pandas/conftest.py b/pandas/conftest.py index b3683de3a173b..86420ad00109a 100644 --- a/pandas/conftest.py +++ b/pandas/conftest.py @@ -1,5 +1,8 @@ import pytest +import numpy +import pandas + def pytest_addoption(parser): parser.addoption("--skip-slow", action="store_true", @@ -19,3 +22,11 @@ d...
This adds a small entry in the conftest.py file, which makes it possible to run doctests with eg ``` pytest --doctests-module pandas/core/series.py ``` We are far from being able to run them all without error, and if we would want that is even another question (it may be too much small details to pay attention ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15626
2017-03-08T20:16:44Z
2017-03-09T07:51:10Z
2017-03-09T07:51:10Z
2018-02-12T22:29:08Z
DOC: resolved mistakes in examples series
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 84a48c9be8fd9..606906bfcd7c4 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -668,6 +668,7 @@ def swaplevel(self, i=-2, j=-1, axis=0): dtype: int64 >>> df = pd.DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]}) >>...
Adjusted some docstring examples.
https://api.github.com/repos/pandas-dev/pandas/pulls/15625
2017-03-08T19:51:06Z
2017-03-09T08:21:31Z
2017-03-09T08:21:31Z
2017-03-09T08:21:44Z
DOC: adapt example of groupby filter and transform
diff --git a/pandas/core/groupby.py b/pandas/core/groupby.py index a10be078a8f96..6428a4a08a1ed 100644 --- a/pandas/core/groupby.py +++ b/pandas/core/groupby.py @@ -2871,7 +2871,22 @@ def transform(self, func, *args, **kwargs): Examples -------- + >>> import pandas as pd + >>> df = pd....
In this pull request the `filter` and `transform` examples are converted to a running doctest
https://api.github.com/repos/pandas-dev/pandas/pulls/15624
2017-03-08T19:42:04Z
2017-03-28T18:18:13Z
null
2020-01-13T11:22:21Z
DOC: add documentation to IndexSlice
diff --git a/doc/source/api.rst b/doc/source/api.rst index fbce64df84859..f126e478f424d 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -1405,6 +1405,7 @@ MultiIndex :toctree: generated/ MultiIndex + IndexSlice MultiIndex Components ~~~~~~~~~~~~~~~~~~~~~~ diff --git a/pandas/core/indexing.py...
- [x] closes #12508
https://api.github.com/repos/pandas-dev/pandas/pulls/15623
2017-03-08T19:23:47Z
2017-03-09T12:05:47Z
2017-03-09T12:05:47Z
2017-03-09T12:05:48Z
DOC: add examples to DataFrame.dropna
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 4e7a5ebdf6f67..d47cb05285370 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -3079,6 +3079,50 @@ def dropna(self, axis=0, how='any', thresh=None, subset=None, Returns ------- dropped : DataFrame + + Examples...
- [ ] closes #xxxx Add examples to DataFrame.dropna.
https://api.github.com/repos/pandas-dev/pandas/pulls/15620
2017-03-08T18:47:01Z
2017-03-10T13:44:27Z
2017-03-10T13:44:27Z
2017-03-10T13:44:27Z
DOC: fix link to offset strings in resample method
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index ff58a2aa77447..c45cf57152599 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -4360,6 +4360,8 @@ def resample(self, rule, how=None, axis=0, fill_method=None, closed=None, .. versionadded:: 0.19.0 + Notes + ...
- [ ] closes #xxxx The link to offset strings was not rendered correctly, I've made a sections ```Notes```, and placed the link there. Part of issue #14843
https://api.github.com/repos/pandas-dev/pandas/pulls/15619
2017-03-08T18:20:06Z
2017-03-08T18:46:50Z
2017-03-08T18:46:50Z
2017-03-08T19:12:27Z
DOC: use mathjax on sphinx - #15469 Exponentially Weighed Windows pages now shows formulas
diff --git a/doc/source/conf.py b/doc/source/conf.py index 1e82dfca87d17..6840f76866d2c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -46,7 +46,7 @@ 'ipython_sphinxext.ipython_console_highlighting', 'sphinx.ext.intersphinx', 'sphinx.ext.coverage', - ...
closes #15469
https://api.github.com/repos/pandas-dev/pandas/pulls/15618
2017-03-08T18:08:55Z
2017-03-09T14:26:57Z
2017-03-09T14:26:57Z
2017-03-09T19:02:30Z
handle nan values in DataFrame.update when overwrite=False #15593
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 4e7a5ebdf6f67..c4abbaecb00e9 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -3846,13 +3846,13 @@ def update(self, other, join='left', overwrite=True, filter_func=None, if overwrite: mask = isnull(that...
closes #15593
https://api.github.com/repos/pandas-dev/pandas/pulls/15617
2017-03-08T17:55:43Z
2017-04-18T22:38:26Z
null
2017-05-22T21:55:32Z
BUG: Error when specifying int index containing NaN
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 8f671062464f0..a0f65c27ba993 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -765,6 +765,7 @@ Bug Fixes - Bug in ``DataFrame.isin`` comparing datetimelike to empty frame (:issue:`15473`) - Bug ...
Finally got around to patching this. Partially addresses #15187.
https://api.github.com/repos/pandas-dev/pandas/pulls/15616
2017-03-08T17:54:43Z
2017-03-10T14:41:26Z
null
2017-03-10T14:43:29Z
Clean multiindex keys
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index 6559fc4c24ce2..d2491f3dcceba 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -2214,7 +2214,7 @@ def query(self, expr, inplace=False, **kwargs): try: new_data = self.loc[res] - except ValueError: + except...
- [x] closes #15452 - [x] tests added / passed - [x] passes ``git diff master | flake8 --diff`` - [x] whatsnew entry Most of the change to code is mere refactoring (the small change in ``pandas/core/frame.py`` can be undone once we decide about #15438), but I did suppress three obsolete (the same job [is alre...
https://api.github.com/repos/pandas-dev/pandas/pulls/15615
2017-03-08T14:35:27Z
2017-07-14T07:22:17Z
null
2017-07-14T07:22:17Z
BLD: fix linting wrt to #15537, changes in location of pandas/src
diff --git a/ci/lint.sh b/ci/lint.sh index 2ffc68e5eb139..ed3af2568811c 100755 --- a/ci/lint.sh +++ b/ci/lint.sh @@ -8,9 +8,9 @@ RET=0 if [ "$LINT" ]; then - # pandas/src is C code, so no need to search there. + # pandas/_libs/src is C code, so no need to search there. echo "Linting *.py" - flake8 p...
https://api.github.com/repos/pandas-dev/pandas/pulls/15614
2017-03-08T14:26:08Z
2017-03-08T14:52:30Z
2017-03-08T14:52:30Z
2017-03-08T14:52:30Z
DOC: updated docstrings for FramePlotMethods and SeriesPlotMethods
diff --git a/pandas/tools/plotting.py b/pandas/tools/plotting.py index d46c38c117445..f4407ee6a7dc2 100644 --- a/pandas/tools/plotting.py +++ b/pandas/tools/plotting.py @@ -3763,6 +3763,8 @@ def pie(self, **kwds): """ return self(kind='pie', **kwds) +SeriesPlotMethods.__doc__ = _shared_docs['plot'] ...
Closes #15458
https://api.github.com/repos/pandas-dev/pandas/pulls/15611
2017-03-08T07:11:22Z
2017-08-01T22:54:40Z
null
2017-08-01T22:54:40Z
BUG: make Series.sort_values(ascending=[False]) behave as ascending=False (#15604)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index e459c854dfab9..571900a9a16f0 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -228,7 +228,7 @@ Other enhancements - ``pd.TimedeltaIndex`` now has a custom datetick formatter specifically designed f...
- [X ] closes #15604 - [ X] tests added / passed - [X] passes ``git diff upstream/master | flake8 --diff`` - [X] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15607
2017-03-07T22:06:20Z
2017-03-08T13:37:19Z
null
2017-03-08T13:37:37Z
BUG: DataFrame.hist() does not get along with matplotlib.pyplot.tight_layout()
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index e459c854dfab9..ef189697ae27f 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -765,7 +765,7 @@ Bug Fixes - Bug in ``.read_csv()`` with ``parse_dates`` when multiline headers are specified (:issue:`...
- [ ] (re)closes #9351 - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15602
2017-03-07T17:01:17Z
2017-03-12T23:51:15Z
null
2023-05-11T01:15:12Z
DEPR: Panel deprecated
diff --git a/doc/source/computation.rst b/doc/source/computation.rst index 57480a244f308..2423f1a342994 100644 --- a/doc/source/computation.rst +++ b/doc/source/computation.rst @@ -505,13 +505,18 @@ two ``Series`` or any combination of ``DataFrame/Series`` or - ``DataFrame/DataFrame``: by default compute the statistic...
closes #13563 going to be on top of #15677 Partially addresses https://github.com/pandas-dev/pandas/issues/14565#issuecomment-275746292 Note this is currently a ``FutureWarning`` mainly to fail the tests if I missed anything. Intention is to change to a ``DeprecationWarning``.
https://api.github.com/repos/pandas-dev/pandas/pulls/15601
2017-03-07T16:27:43Z
2017-04-07T19:10:25Z
null
2018-10-28T08:20:26Z
Parallelize doc build
diff --git a/doc/make.py b/doc/make.py index 8a6d4e5df24f0..a2f5be5594e44 100755 --- a/doc/make.py +++ b/doc/make.py @@ -197,7 +197,7 @@ def html(): print(e) print("Failed to convert %s" % nb) - if os.system('sphinx-build -P -b html -d build/doctrees ' + if os.system('sphinx-bu...
closes #15591 https://travis-ci.org/jreback/pandas/builds/208594369 a couple of minutes faster with -j 2. fixes some deprecated use of ``pd.Term``. Note there is another error in HDFStore build, though I can't repro it locally.
https://api.github.com/repos/pandas-dev/pandas/pulls/15600
2017-03-07T14:29:18Z
2017-03-07T14:31:01Z
null
2017-03-07T14:43:48Z
DOC: remove Panel4D from the API docs #15579
diff --git a/doc/source/api.rst b/doc/source/api.rst index 33ac5fde651d4..fbce64df84859 100644 --- a/doc/source/api.rst +++ b/doc/source/api.rst @@ -1237,58 +1237,7 @@ Serialization / IO / Conversion Panel.to_frame Panel.to_xarray Panel.to_clipboard - -.. _api.panel4d: - -Panel4D -------- - -Constructor -~~...
Hi this is my first PR to Pandas I'm pretty sure this is what @jorisvandenbossche was getting at on ticket <a href='https://github.com/pandas-dev/pandas/issues/15579'>#15579<a/>. I noticed that <a href='https://github.com/pandas-dev/pandas/blob/be4a63fe791e27c2f8a9ae4f3a419ccc255c1b5b/pandas/tests/test_expressions....
https://api.github.com/repos/pandas-dev/pandas/pulls/15598
2017-03-07T07:02:55Z
2017-03-07T07:41:31Z
2017-03-07T07:41:31Z
2017-03-07T07:51:22Z
DOC: remove wakari.io section
diff --git a/doc/source/install.rst b/doc/source/install.rst index 8b0fec6a3dac3..fe2a9fa4ba509 100644 --- a/doc/source/install.rst +++ b/doc/source/install.rst @@ -23,18 +23,6 @@ Officially Python 2.7, 3.4, 3.5, and 3.6 Installing pandas ----------------- -Trying out pandas, no installation required! -~~~~~~~~~~~~...
- [x] closes #15595 - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15596
2017-03-06T21:46:49Z
2017-03-06T22:15:10Z
2017-03-06T22:15:10Z
2017-03-06T23:56:59Z
BUG: upcasting on reshaping ops #13247
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index f6d5e3df814fc..cc13f39a47d5a 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -886,3 +886,5 @@ Bug Fixes - Bug in ``pd.melt()`` where passing a tuple value for ``value_vars`` caused a ``TypeError``...
Only rebasing and fixing the merge conflicts Original work done by: @jennolsen84 Original branch: https://github.com/jennolsen84/pandas/tree/concatnan Original PR: #13337 - [x] closes #13247 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15594
2017-03-06T21:13:02Z
2017-03-14T13:33:58Z
null
2017-03-20T21:21:56Z
Moved freeze_panes validation to io/excel.py (#15160)
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index b3e43edc3eb55..15179ac321076 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -1431,24 +1431,12 @@ def to_excel(self, excel_writer, sheet_name='Sheet1', na_rep='', inf_rep=inf_rep) formatted_...
- follow up to #15160 - [x] tests added / passed - Existing test suite passed - [x] passes ``git diff upstream/master | flake8 --diff``
https://api.github.com/repos/pandas-dev/pandas/pulls/15592
2017-03-06T14:51:06Z
2017-03-07T13:22:10Z
null
2017-03-07T13:22:10Z
API: return Index instead of array from DatetimeIndex field accessors (GH15022)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 5ac7624856040..61ec609cd57b2 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -471,6 +471,40 @@ New Behavior: s.map(lambda x: x.hour) + +.. _whatsnew_0200.api_breaking.index_dt_field: + +Acc...
- [x] closes #15022 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry This changes the datetime field accessors of a DatetimeIndex (and PeriodIndex, etc) to return an Index object instead of a plain array: So for example: ``` # PR In [1]: idx = p...
https://api.github.com/repos/pandas-dev/pandas/pulls/15589
2017-03-06T09:43:49Z
2017-03-22T18:47:11Z
null
2017-03-22T18:47:11Z
BUG: Timestamp.round precision error for ns (#15578)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 725dc7fc52ed0..f1df8f456159a 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -652,7 +652,7 @@ Bug Fixes - Bug in ``Index`` power operations with reversed operands (:issue:`14973`) - Bug in ``Time...
- [x] closes #15578 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` Nice trick @jreback! `round()` patched for `DatetimeIndex` and `Timestamp` when rounding by ns.
https://api.github.com/repos/pandas-dev/pandas/pulls/15588
2017-03-06T05:48:56Z
2017-03-07T13:26:22Z
null
2017-12-20T02:01:01Z
ENH: standardize fill_value behavior across the API
diff --git a/pandas/core/reshape.py b/pandas/core/reshape.py index 87cb088c2e91e..b76e52acb8be4 100644 --- a/pandas/core/reshape.py +++ b/pandas/core/reshape.py @@ -25,6 +25,7 @@ import pandas.core.algorithms as algos import pandas.algos as _algos +from pandas.core.missing import validate_fill_value from pandas....
- [ ] closes #15533 - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15587
2017-03-06T04:32:39Z
2017-03-11T17:38:27Z
null
2017-03-11T17:48:07Z
Join result takes on the calling from index
diff --git a/pandas/core/frame.py b/pandas/core/frame.py index b3e43edc3eb55..e1ce159d1154c 100644 --- a/pandas/core/frame.py +++ b/pandas/core/frame.py @@ -4591,7 +4591,7 @@ def _join_compat(self, other, on=None, how='left', lsuffix='', rsuffix='', other = DataFrame({other.name: other}) if isin...
https://github.com/pandas-dev/pandas/issues/15582 Fixes indexing referenced in 15582. Tests appear to work on my end, we'll see...
https://api.github.com/repos/pandas-dev/pandas/pulls/15586
2017-03-06T01:00:27Z
2017-03-06T23:29:45Z
null
2017-03-07T01:24:00Z
BUG: Fix index order for Index.intersection()
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 37a70435ed6ff..a808ad4bd9dc6 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -738,6 +738,62 @@ New Behavior: TypeError: Cannot compare 2014-01-01 00:00:00 of type <class 'pandas.tslib.Times...
- [x] closes #15582 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15583
2017-03-05T20:57:02Z
2017-03-29T00:29:47Z
null
2017-03-29T08:06:09Z
DOC: Use nbsphinx
diff --git a/ci/requirements-3.5_DOC.run b/ci/requirements-3.5_DOC.run index 644a16f51f4b6..9bdd7c652cc9d 100644 --- a/ci/requirements-3.5_DOC.run +++ b/ci/requirements-3.5_DOC.run @@ -5,6 +5,7 @@ nbconvert nbformat notebook matplotlib +seaborn scipy lxml beautifulsoup4 diff --git a/ci/requirements-3.5_DOC.sh b/c...
Update header levels for nbsphinx Link to nb, nicer default table Closes #15539
https://api.github.com/repos/pandas-dev/pandas/pulls/15581
2017-03-05T18:28:19Z
2017-04-08T16:11:10Z
2017-04-08T16:11:10Z
2017-05-29T20:43:53Z
Comment typo correction
diff --git a/pandas/types/dtypes.py b/pandas/types/dtypes.py index 5b6d7905d4095..43135ba94ab46 100644 --- a/pandas/types/dtypes.py +++ b/pandas/types/dtypes.py @@ -73,7 +73,7 @@ def __ne__(self, other): @classmethod def is_dtype(cls, dtype): - """ Return a boolean if we if the passed type is an actu...
- [ ] closes #xxxx - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15577
2017-03-05T14:45:38Z
2017-03-05T16:21:15Z
2017-03-05T16:21:15Z
2017-03-05T16:21:17Z
Raising for invalid dtype issue #15520
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 298fa75779420..ae5b1180c86f4 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -172,6 +172,12 @@ def _validate_dtype(self, dtype): raise NotImplementedError("compound dtypes are not implemented" ...
closes #15520 - [ ] closes #xxxx - [ ] tests added / passed - [ ] passes git diff upstream/master | flake8 --diff - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15576
2017-03-05T14:06:12Z
2017-03-10T12:08:16Z
null
2017-03-10T12:08:16Z
Added exception for invalid dtypes per issue #15520
diff --git a/pandas/core/series.py b/pandas/core/series.py index 626a4a81193cc..6465264df02e3 100644 --- a/pandas/core/series.py +++ b/pandas/core/series.py @@ -156,7 +156,11 @@ def __init__(self, data=None, index=None, dtype=None, name=None, if data is None: data = {} if dtyp...
close #15520 - [ ] closes #xxxx - [ ] tests added / passed - [ ] passes ``git diff upstream/master | flake8 --diff`` - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15574
2017-03-05T04:15:30Z
2017-03-10T12:08:46Z
null
2017-03-10T12:08:46Z
ENH: Allow parameters method and min_periods in DataFrame.corrwith()
diff --git a/doc/source/computation.rst b/doc/source/computation.rst index 57480a244f308..56bc9e0ee9613 100644 --- a/doc/source/computation.rst +++ b/doc/source/computation.rst @@ -157,6 +157,7 @@ objects. df2 = pd.DataFrame(np.random.randn(4, 4), index=index[:4], columns=columns) df1.corrwith(df2) df2.corr...
Added new keyword parameters for `DataFrame.corrwith()`, which allows methods other than Pearson to be used. See #9490. - [x] closes #9490 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15573
2017-03-04T23:18:17Z
2017-08-17T10:29:06Z
null
2017-08-17T10:29:06Z
DOC: reset table_schema option after example
diff --git a/doc/source/options.rst b/doc/source/options.rst index 1a0e5cf6b7235..1b219f640cc87 100644 --- a/doc/source/options.rst +++ b/doc/source/options.rst @@ -533,3 +533,9 @@ by default. False by default, this can be enabled globally with the pd.set_option('display.html.table_schema', True) Only ``'display....
@jreback I think this should fix the errors you noticed here https://github.com/pandas-dev/pandas/issues/15559#issuecomment-284166380 (let's see if travis agrees with me) The table schema repr was activated due to the example (the ipython environment lives on between different documents; it would actually be a good ...
https://api.github.com/repos/pandas-dev/pandas/pulls/15572
2017-03-04T22:10:55Z
2017-03-05T10:28:57Z
2017-03-05T10:28:57Z
2017-03-05T10:28:58Z
DOC: fix build_table_schema docs
diff --git a/doc/source/io.rst b/doc/source/io.rst index c34cc1ec17512..c7a68a0fe9fbb 100644 --- a/doc/source/io.rst +++ b/doc/source/io.rst @@ -2090,7 +2090,7 @@ A few notes on the generated table schema: - All dates are converted to UTC when serializing. Even timezone naïve values, which are treated as UTC with a...
Small follow-up on #14904
https://api.github.com/repos/pandas-dev/pandas/pulls/15571
2017-03-04T21:56:54Z
2017-03-04T21:58:33Z
2017-03-04T21:58:33Z
2017-03-04T21:58:33Z
BUG: DataFrame.isin empty datetimelike
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 1ba327a4ea50c..e18bf8ba9912d 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -676,7 +676,7 @@ Bug Fixes - Bug in ``pd.read_msgpack()`` in which ``Series`` categoricals were being improperly proces...
- [x] closes #15473 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/15570
2017-03-04T21:07:05Z
2017-03-05T01:45:21Z
2017-03-05T01:45:21Z
2017-03-05T01:45:25Z
BUG: Groupby.cummin/max DataError on datetimes (#15561)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 1ba327a4ea50c..3ddab0717396e 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -635,7 +635,7 @@ Performance Improvements - Increased performance of ``pd.factorize()`` by releasing the GIL with ``obj...
- [x] closes #15561 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` `numeric_only=False` set by default for `groupby.cummin/cummax` like `groupby.max/min` allows datetimes to work.
https://api.github.com/repos/pandas-dev/pandas/pulls/15569
2017-03-04T20:20:15Z
2017-03-05T02:02:41Z
2017-03-05T02:02:41Z
2017-12-20T02:01:10Z
BUG:Floating point accuracy with DatetimeIndex.round (#14440)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 1ba327a4ea50c..8dc337aa24fb7 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -651,6 +651,7 @@ Bug Fixes - Bug in ``Index`` power operations with reversed operands (:issue:`14973`) - Bug in ``Time...
- [x] closes #14440 - [x] tests added / passed - [x] passes ``git diff upstream/master | flake8 --diff`` - [x] whatsnew entry Employs @eoincondron's fix for float point inaccuracies when rounding by milliseconds for `DatetimeIndex.round` and `Timestamp.round`
https://api.github.com/repos/pandas-dev/pandas/pulls/15568
2017-03-04T18:26:52Z
2017-03-05T16:26:59Z
null
2017-12-20T02:01:17Z
DEPR/CLN: remove SparseTimeSeries class (follow-up GH15098)
diff --git a/doc/source/whatsnew/v0.20.0.txt b/doc/source/whatsnew/v0.20.0.txt index 782ae6082c1cf..381c90f6b84a5 100644 --- a/doc/source/whatsnew/v0.20.0.txt +++ b/doc/source/whatsnew/v0.20.0.txt @@ -585,6 +585,8 @@ Removal of prior version deprecations/changes Similar functionality can be found in the `Google2Pand...
#15098 removed the TimeSeries alias, but we also deprecated SparseTimeSeries (#10890), so this makes the removal complete.
https://api.github.com/repos/pandas-dev/pandas/pulls/15567
2017-03-04T11:33:23Z
2017-03-04T14:14:37Z
2017-03-04T14:14:37Z
2017-03-04T14:14:37Z
Revert FrozenList changes (doc build slowdown, #15559)
diff --git a/doc/source/groupby.rst b/doc/source/groupby.rst index 2d406de7c0c9b..8484ccd69a983 100644 --- a/doc/source/groupby.rst +++ b/doc/source/groupby.rst @@ -126,16 +126,6 @@ We could naturally group by either the ``A`` or ``B`` columns or both: grouped = df.groupby('A') grouped = df.groupby(['A', 'B']) ...
See #15559. This temporarily reverts #15506, to see if this fixes the doc build slowdown.
https://api.github.com/repos/pandas-dev/pandas/pulls/15566
2017-03-04T11:33:00Z
2017-03-04T15:38:43Z
null
2017-03-04T15:38:43Z