Can I use a single FacetGrid object to plot two different types of plots side by side ? I have tried plotting using two different FacetGrids but I can not get them side by side.
dataframe = pd.read_csv('xyz.csv')
#dataframe.head()
This is what my dataset looks like.
sns.FacetGrid(dataframe, hue = 'status', height = 5).map(sns.histplot, 'age').add_legend()
sns.FacetGrid(dataframe, hue = 'status', height = 5).map(sns.distplot, 'age').add_legend()
Thank you.