How to increase the size of a Dataframe.hist figure for pandas 0.11.0

I am trying to make histograms for all columns of a data frame via pandas 0.11.0, but the size of the figure is very small and therefore the histograms are even smaller. We have the figsize property in 0.19.0, but how can we achieve the same in 0.11.0.

+5
source share
1 answer

Let's try something like this:

fig = plt.figure(figsize = (15,20)) ax = fig.gca() df.hist(ax = ax) 
+7
source

Source: https://habr.com/ru/post/1266686/


All Articles