Код: Выделить всё
%matplotlib notebook
from itertools import combinations
import matplotlib.pyplot as plt
fig, axes = plt.subplots(len(df_in.columns) // 3, 3, figsize=(12, 48))
for x in df_in.columns:
df_in.hist(column = x, bins = 100)
fig.tight_layout()
Подробнее здесь: https://stackoverflow.com/questions/396 ... big-figure
Мобильная версия