I want to combine two figures with different ranges like figure
This figure was synthesized by drawing two figures. However, I would like to use a seaborn library at once. but now it shows like
.
How could I combine different y range figures by using seaborn or any other python plot library?
I add my python code, too
import seaborn as sns
import numpy as np
with sns.axes_style('white'):
ax = sns.lineplot(x='unit_step', y='accuracy', hue='data_type', style='data_type', markers=True, dashes=True, data=data)
ax.set_xticks(np.arange(1,6))