gpt4 book ai didi

python - seaborn可以画断 Axis 图吗?

转载 作者:太空宇宙 更新时间:2023-11-03 11:21:02 24 4
gpt4 key购买 nike

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

enter image description here

最佳答案

虽然没有我想要的那么漂亮,但是可以。

Output

%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可以画断 Axis 图吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43006289/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com