gpt4 book ai didi

python - 以编程方式在 matplotlib 中绘制重叠偏移图

转载 作者:行者123 更新时间:2023-11-28 21:52:46 27 4
gpt4 key购买 nike

我有 3 个不同的图,目前每个图都保存为单独的图形。但是,由于空间限制,我想将它们彼此分层并像这样偏移:

Example image

我想传达的是,每个地 block 都存在类似的模式,这是一种很好且紧凑的方式。我想使用 matplotlib 以编程方式绘制这样的图形,但我不确定如何使用常用的 pyplot 命令对图形进行分层和偏移。任何的意见都将会有帮助。以下代码是我目前所拥有内容的框架。

import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

window = 100
xs = np.arange(100)
ys = np.zeros(100)
ys[80:90] = 1
y2s = np.random.randn(100)/5.0+0.5

with sns.axes_style("ticks"):
for scenario in ["one", "two", "three"]:
fig = plt.figure()
plt.plot(xs, ys)
plt.plot(xs, y2s)
plt.title(scenario)
sns.despine(offset=10)

最佳答案

您可以手动创建要绘制的轴并根据需要放置它们。为了突出显示这种方法,请按如下方式修改您的示例

import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns

window = 100
xs = np.arange(100)
ys = np.zeros(100)
ys[80:90] = 1
y2s = np.random.randn(100)/5.0+0.5

fig = plt.figure()
with sns.axes_style("ticks"):
for idx,scenario in enumerate(["one", "two", "three"]):
off = idx/10.+0.1
ax=fig.add_axes([off,off,0.65,0.65], axisbg='None')
ax.plot(xs, ys)
ax.plot(xs, y2s)
ax.set_title(scenario)
sns.despine(offset=10)

这样的情节
enter image description here

在这里,我使用 fig.add_axes 将手动创建的轴对象添加到预定义的图形对象。参数指定新创建的轴的位置和大小,参见 docs .请注意,我还将轴背景设置为透明 (axisbg='None')。

关于python - 以编程方式在 matplotlib 中绘制重叠偏移图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27869845/

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