Have referenced a few links on this subject but still not getting a readable result
Plot all pandas dataframe columns separately
Improve subplot size/spacing with many subplots
I have over 150 columns that I need to view via subplots. but when I apply the code the subplots are compressed in the view to the point where I cannot see anything meaningful
axes = mydata.plot(subplots=True, layout=(22, 7), figsize=(25, 16), sharex=True, sharey=True)
# flatten the axes array to easily access any subplot
axes = axes.flat
# extract the figure object
fig = axes[0].get_figure()
# use tight_layout
fig.tight_layout()
Any guidance would be greatly appreciated