I'm doing some simple EDA and trying to display a grid of histograms results in histogram names overlapping x axis labels as seen on the below screenshot:
The code that I'm using:
import pandas as pd
import matplotlib.pyplot as plt
data = pd.read_csv('housing.csv')
plt.tight_layout() # this doesn't have any effect, I only added it, bc I thought it would fix the problem
_ = data.hist()
It's displayed the same if I use DataSpell or GoogleColab and any other tool.