如何从 Matplotlib 图表中检索 XY 数据?
要从 matplotlib 图表中检索 XY 数据,我们可以使用 get_xdata() 和 get_ydata() 方法。
步骤
使用 numpy 创建 x 和 y 数据点。
使用 xlim() 和 ylim() 方法限制 X 和 Y 轴范围。
使用 plot() 方法绘制 xs 和 ys 数据点,其中 marker=diamond,color=red 和 markersize=10,将返回的元组存储在 line 中。
对 line 使用 get_xdata() 和 get_ydata() 方法来获取 xy 数据。
要显示图表,请使用 show() 方法。
示例
import numpy as np from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True xs = np.random.rand(10) ys = np.random.rand(10) plt.xlim(0, 1) plt.ylim(0, 1) line, = plt.plot(xs, ys, marker='d', c='red', markersize=10) xdata = line.get_xdata() ydata = line.get_ydata() print("X-data of plot is: {}
Y-data for plot is: {}".format(xdata, ydata)) plt.show()
输出
当我们执行代码时,它会显示一个图表,并在控制台上打印其 XY 数据。
X-data of plot is: [0.80956382 0.99844606 0.57811592 0.01201992 0.85059459 0.03628843 0.99122502 0.7581602 0.93371784 0.60358098] Y-data for plot is: [0.65190208 0.27895754 0.46742327 0.79049074 0.36485545 0.80771822 0.9753513 0.91897778 0.17651205 0.7898951 ]
广告