import pandas as pd
import seaborn as sns
# load data
df = sns.load_dataset('penguins', cache=False)
sns.scatterplot(data=df, x='bill_length_mm', y='bill_depth_mm', hue='sex')
plt.show()
sns.scatterplot(data=df, x='flipper_length_mm', y='body_mass_g', hue='sex')
plt.show()
When I draw two plots with seaborn, in one cell, in jupyter, I get this view:
I want to draw the plots, side by side, like this:
plot1 plot2
How I should do this?
Updated:
Not two plots on one figure, but two plots on two separate figures.
- This is not the solution being sought, because it's two plots on one figure.
fig, ax = plt.subplots(1,2)
sns.plotType(someData, ax=ax[0]) # plot1
sns.plotType(someData, ax=ax[1]) # plot2
fig.show()
- The solutions from the proposed duplicate ipython notebook arrange plots horizontally, do not work
- The option with
%html
causes the figures to plot on top of each other - Additionally, other options were for
ipython
, not Jupyter, or recommended creating subplots..
- The option with
plt.savefig('file.jpg')
to save each figure to a file.jupyterlab v4.1.4
,ipython v8.2.0
,ipywidgets v8.1.2
Markdown
Other Options
HTML
andIPython.display
ipywidgets
andIPython.display
imshow
matplotlib
and display them withimshow
, but the plot axis must also be set to off.