Change this:
pd.DataFrame(regr.coef_, df_coeficientes.columns, columns=['Coeffecient'])
to this:
pd.DataFrame(regr.coef_[0], df_coeficientes.columns, columns=['Coeffecient'])
Change this:
pd.DataFrame(regr.coef_, df_coeficientes.columns, columns=['Coeffecient'])
to this:
pd.DataFrame(regr.coef_[0], df_coeficientes.columns, columns=['Coeffecient'])