I have this histograph that shows all my numerical variables. I want to add x and y labels to each of them. Is that possible, or do I have to break them all up into tiny graphs?
dfConverted[['attack', 'defense', 'link_number', 'pendulum_left', 'pendulum_right', 'stars']].hist(bins=50, figsize=(20,15))
plt.show()