Вы можете интегрировать таблицу plt с гистограммой панд следующим образом:
import pandas as pd
import matplotlib.pyplot as plt
df = pd.DataFrame({'A' : [1,1,1,1,2,3,4,5,6,7,8,10]})
fig, axes = plt.subplots(1,1)
axes = df['A'].hist()
plt.legend(df.columns)
dfsummary = pd.DataFrame(df['A'].describe())
plt.table(cellText=dfsummary.values,
colWidths = [0.4]*2,
rowLabels=dfsummary.index,
colLabels=dfsummary.columns,
cellLoc = 'right', rowLoc = 'right',
loc='top')
plt.show()
![enter image description here](https://i.stack.imgur.com/kXTgB.png)