美文网首页
最简洁的线性回归方程代码

最简洁的线性回归方程代码

作者: 林慕空 | 来源:发表于2018-06-08 18:04 被阅读0次

    《远和近》
    ——顾城

    你,
    一会儿看我,
    一会儿看云;

    我觉得,
    你看我时很远,
    你看云时很近。


    from numpy import ones,vstack
    from numpy.linalg import lstsq
    
    points = [(1,5),(3,4)]
    x_coords, y_coords = zip(*points)
    A = vstack([x_coords,ones(len(x_coords))]).T
    m, c = lstsq(A, y_coords)[0]
    print("线性方程为 y = {m}x + {c}".format(m=m,c=c))
    

    相关文章

      网友评论

          本文标题:最简洁的线性回归方程代码

          本文链接:https://www.haomeiwen.com/subject/digasftx.html