gpt4 book ai didi

python - 删除散点图中的绘制点 - matplotlib

转载 作者:行者123 更新时间:2023-11-30 23:16:15 25 4
gpt4 key购买 nike

以下示例是其网站上提供的 matplotlib 散点图示例的简化版本,并显示了我从散点图中删除点的尝试

import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.axes_grid1 import make_axes_locatable

# the random data
x = np.random.randn(2)
y = np.random.randn(2)


fig, axScatter = plt.subplots(figsize=(5.5,5.5))

# the scatter plot:
axScatter.scatter(x, y)
axScatter.set_aspect(1.)


np.delete(x,1)
np.delete(y,1)
axScatter.scatter(x, y)

plt.draw()
plt.show()

我无法找到在绘图后从散点图中删除点的方法,但如果我使用相同的方法,我可以绘制一个新点。

最佳答案

您需要更新绘制的艺术家的数据。

此外,numpy.delete 返回已删除项目的数组副本,因此调用 np.delete(x, 1) 不会修改原始 >x。如果您想删除第二项,则需要使用 x = np.delete(x, 1)

举个简单的例子:

import numpy as np
import matplotlib.pyplot as plt
import time

x, y = np.random.random((2, 10))

fig, ax = plt.subplots()
scat = ax.scatter(x, y, s=150)

# Show the figure, then remove one point every second.
fig.show()
for _ in range(10):
time.sleep(1)
xy = np.delete(scat.get_offsets(), 0, axis=0)
scat.set_offsets(xy)
plt.draw()

关于python - 删除散点图中的绘制点 - matplotlib,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27802591/

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