-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DataFrame.boxplot() ignored figsize keyword #11959
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
Comments
Thanks for the report. We are generally steering people towards the |
Thanks Tom, I just ran across the note about the This works as expected, and respects the figsize keyword
|
I also ran into this issue just now (I am using .19 Pandas) when using the boxplot method. But following Tom's advice - using df.plot.box, as opposed to df.boxplot - solved the problem |
Two questions:
|
I suppose it's been like that for a while. It should probably follow
I'm not sure why that would be. Keep in mind that the default hasn't changed, |
Closed by #16445 |
I'm inclined to just leave it as is for now. |
The DataFrame.boxplot reference documentation says I can change the size of a plot though the
figsize
keyword, but this appears not to work.Using
df.plot(kind='box')
does respectfigsize
.The text was updated successfully, but these errors were encountered: