LinearRegression
LinearRegression copied to clipboard
plt.show blocks
plt.show seems to block and the program is stuck on the first plt.show. Simply replacing plt.show() with the following code should work:
plt.draw() plt.pause(1)