I'm running an OLS analysis using sm.OLS.
My code is:
regression = sm.OLS(y,x3).fit()
regression.summary()
And the results:
My problem is that some values appears with scientific notation. Does anyone know how to transform these numbers to a float notation?
Thanks!