Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将一条直线拟合到我的数据中,以确定是否存在渐变。
我目前正在使用 scipy.stats.linregress 执行此操作。
不过我有点困惑,因为 linregress 的输出之一是“标准误差”,但我不确定 linregress 是如何计算的,因为您的数据点的不确定性没有作为输入给出。
数据点的不确定性肯定会影响给定梯度的不确定性吗?
谢谢!
线性回归的标准误差是通过将拟合模型减去数据点获得的系列的标准偏差。它表明您的数据点与线性模型的拟合程度。