gpt4 book ai didi

python - 如何知道 Matplotlib 为散点图使用了多少个数据点

转载 作者:行者123 更新时间:2023-12-05 03:54:58 25 4
gpt4 key购买 nike

我是新来的。我在想是否有一个简单的代码来打印 Matplotlib 散点图上使用的数据点的数量,并可能将其打印为“N=...”。

非常感谢

最佳答案

如果稍后需要返回数据,并且由于某种原因您无法再访问 xy,您可以像这样检索它们:

import numpy as np
import matplotlib.pyplot as plt

x = ...
y = ...
artist = plt.scatter(x, y)

# ...
# Things that cause you to lose x and y.
# ...

xy = artist.get_offsets()
x, y = np.array(xy).transpose()
print(len(x))

关于python - 如何知道 Matplotlib 为散点图使用了多少个数据点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60567280/

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