I want to plot multiple graphs for Dataframes and box plots side by side instead of top to bottom. For example, If i plot these 3 graphs in will appear top to bottom.I want to display it sides by side(left to right)
df.plot(x="Date", y=["Temp.PM", "Temp.AM"],subplots=True )
df.plot(x="Date", y=["pH_AM", "pH_PM"])
df.plot(x="Date", y=["WindSpeed_AM", "WindSpeed_PM"])
Rather than appearing this way.