Wie man mehrere Seaborn Jointplots in Subplot plottet

Ich habe Probleme beim Platzieren von SeabornJointplot in einer mehrspaltigensubplot.

import pandas as pd
import seaborn as sns

df = pd.DataFrame({'C1': {'a': 1,'b': 15,'c': 9,'d': 7,'e': 2,'f': 2,'g': 6,'h': 5,'k': 5,'l': 8},
          'C2': {'a': 6,'b': 18,'c': 13,'d': 8,'e': 6,'f': 6,'g': 8,'h': 9,'k': 13,'l': 15}})

fig = plt.figure();   
ax1 = fig.add_subplot(121);  
ax2 = fig.add_subplot(122);

sns.jointplot("C1", "C2", data=df, kind='reg', ax=ax1)
sns.jointplot("C1", "C2", data=df, kind='kde', ax=ax2)

Notice wie nur ein Teil derjointplot wird innerhalb des Unterplots platziert und der Rest verbleibt in zwei weiteren Plotrahmen. Was ich möchte, ist, sowohl das @ zu habdistributions auch in das @ eingefüsubplots.

Kann mir jemand dabei helfen?

Antworten auf die Frage(4)

Ihre Antwort auf die Frage