gpt4 book ai didi

python - 如何在python中的散点图上绘制一条线?

转载 作者:IT老高 更新时间:2023-10-28 20:26:27 29 4
gpt4 key购买 nike

我有两个数据向量,我已将它们放入 pyplot.scatter()。现在我想对这些数据进行线性拟合。我该怎么做?我试过使用 scikitlearnnp.polyfit()

最佳答案

import numpy as np
from numpy.polynomial.polynomial import polyfit
import matplotlib.pyplot as plt

# Sample data
x = np.arange(10)
y = 5 * x + 10

# Fit with polyfit
b, m = polyfit(x, y, 1)

plt.plot(x, y, '.')
plt.plot(x, b + m * x, '-')
plt.show()

enter image description here

关于python - 如何在python中的散点图上绘制一条线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19068862/

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