我正在使用Matplotlib从.txt文件中绘制数据,尽管该图看起来像预期的那样,但在图中有一条奇数行。这种情况发生在我尝试过的三个不同的.txt数据文件中。我在Mathematica中绘制了数据,以确保它不是数据的工件。我正在尝试从数据中删除该行。
我尝试访问某些Matplotlib方法(例如lines.remove())没有任何运气。下面是我正在执行的代码和生成的图。
import numpy as np
import matplotlib.pyplot as plt
neon = np.loadtxt("data/neon.txt")
neon_plot = plt.plot(neon)
plt.grid()
This is an example of the horizontal line going through my plots