python – 是否有可能用seaborn画出破碎的轴图?

我需要用现有数据绘制一个破碎的x轴图(例如下图),我的问题是是否可以使用seaborn API来做到这一点?

python  – 是否有可能用seaborn画出破碎的轴图?

解决方法:

不像我想的那样漂亮但是很有效.

python  – 是否有可能用seaborn画出破碎的轴图?

%matplotlib inline  # If you are running this in a Jupyter Notebook.
import seaborn as sns
import numpy as np
import matplotlib.pyplot as plt


x = np.linspace(0, 20, 500)
y = np.sin(x)

f, (ax1, ax2) = plt.subplots(ncols=2, nrows=1, sharey=True)
ax = sns.tsplot(time=x, data=y, ax=ax1)
ax = sns.tsplot(time=x, data=y, ax=ax2)

ax1.set_xlim(0, 6.5)
ax2.set_xlim(13.5, 20)
上一篇:python – Seaborn BarPlot反转y轴并将x轴保持在图表区域的底部


下一篇:python – 在seaborn图上设置剪辑