Skip to content

BUG: The setting xrot=0 in DataFrame.hist() doesn't work with by and subplots #30288 #30491

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 6 commits into from
Dec 27, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix whitespace
  • Loading branch information
souvik3333 committed Dec 26, 2019
commit abe14497a6a51a3e1307d0e896a6e2aa06880c44
3 changes: 2 additions & 1 deletion pandas/tests/plotting/test_hist_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ def test_hist_subplot_xrot(self):
bins=5,
xrot=0
)
self._check_ticks_props(axes,xrot=0)
self._check_ticks_props(axes, xrot=0)


@td.skip_if_no_mpl
class TestDataFrameGroupByPlots(TestPlotBase):
Expand Down