Using Seaborn I would like to plot both SBP and DBP columns as below.
To achieve this, I use:
plt.style.use('ggplot')
g = sns.relplot(data=r_29, x="DATE_TIME", y="SBP", col="VISIT", col_wrap=2, facet_kws={'sharey': False, 'sharex': False}, aspect=2, marker='o')
g = sns.relplot(data=r_29, x="DATE_TIME", y="DBP", col="VISIT", col_wrap=2, facet_kws={'sharey': False, 'sharex': False}, aspect=2, marker='+')
g.data = r_29 # Hack needed to work around bug on v0.11, fixed in v0.12.dev
g.map(sns.lineplot, 'DATE_TIME', 'SBP', color='r', ci=None, lw=3)
g.map(sns.lineplot, 'DATE_TIME', 'DBP', color='b', ci=None, lw=3)
However, I get the following plot
How can I obtain the drawings of SBP and DBP variable in a single plot for each visit like the first plot?
Is there a way to change the y axis name to something else than DBP?