Python sm.OLS results summary with scientific notation

Viewed 33

I'm running an OLS analysis using sm.OLS.

My code is:

regression = sm.OLS(y,x3).fit()
regression.summary()

And the results:

OLS Results

My problem is that some values appears with scientific notation. Does anyone know how to transform these numbers to a float notation?

Thanks!

0 Answers
Related