I wrote a Python program that finds the line of best fit, for a set of points.
Пікірлер: 2
@Abstract_CodeАй бұрын
Great video and a cool implementation! You might also want to check out Linear Regression-it's a common method for finding the line of best fit and could be a helpful comparison to your approach. and its code is relatively simple, no longer than 10 lines of code.
@entityredstoneonytАй бұрын
this is a very cool idea for a python program, but there should be a more algorithmic way to do it. guess amd checking seems to be the only option here, but there could be a way to converge faster