Skip to content

what's new fix, reference issue #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v0.18.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -540,4 +540,4 @@ of columns didn't match the number of series provided (:issue:`12039`).

- Bug in ``.loc`` setitem indexer preventing the use of a TZ-aware DatetimeIndex (:issue:`12050`)
- Big in ``.style`` indexes and multi-indexes not appearing (:issue:`11655`)
- Bug in ``pivot_table`` where ``dropna`` argument drops columns and index level names (:issue:`12133`)
- Bug in ``.pivot_table()`` where ``dropna`` argument drops columns and index level names (:issue:`12133`)
1 change: 1 addition & 0 deletions pandas/tools/tests/test_pivot.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def test_pivot_table_dropna(self):
assert_equal(pv_col.columns.values, m.values)
assert_equal(pv_ind.index.values, m.values)

#issue 12133, dropna=False arg drops index level names
idx = pd.MultiIndex.from_tuples([(1000000, 201308), (1000000, 201310)],
names=('quantity', 'month'))
tup = (("B", "c"), ("B", "d"), ("C", "c"), ("C", "d"))
Expand Down