作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下示例是其网站上提供的 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/
我是一名优秀的程序员,十分优秀!