I draw two separate histograms, but I don't know how to add the x labels and y labels and the tile separately for each graph. Here is my code:
subdata1=dataFrame.loc[:,['Column1','Column2']]
import matplotlib.pyplot as plt
fig, axs = plt.subplots(1,2, figsize=(6,4), dpi=100, sharey=False, tight_layout=True)
axs[0].hist(subdata1.Column1, density=True, bins=8) #1st graph
axs[1].hist(subdata1.Column2, density=True, bins=8) #2nd graph