6
python中有沒有庫可以做segmented linear regression? 我想自動將多行代碼粘貼到我的數據中,以得到如下樣式的內容: python中的分段線性迴歸
Btw。我知道細分的數量。
python中有沒有庫可以做segmented linear regression? 我想自動將多行代碼粘貼到我的數據中,以得到如下樣式的內容: python中的分段線性迴歸
Btw。我知道細分的數量。
也許,可以使用Numpy的numpy.piecewise()
工具。
更詳細的描述如下所示: How to apply piecewise linear fit in Python?
如果這不是需要什麼,然後你可以或許找到這些問題的一些有用的信息: https://datascience.stackexchange.com/questions/8266/is-there-a-library-that-would-perform-segmented-linear-regression-in-python
這裏:
https://datascience.stackexchange.com/questions/8457/python-library-for-segmented-regression-a-k-a-piecewise-regression
可能的複製[如何在Python中應用分段線性擬合?](https://stackoverflow.com/questions/29382903/how-to-apply-piecewise-linear-fit-in-python) – christopherlovell