I am trying to convert all rows in one column from a scientific notation to a float. I am trying this solution below but getting a syntax error. Does anyone have a better way of doing it?
future = model.make_future_dataframe(periods=15,freq='M')
forecast = model.predict(future)
forecast.tail(15)
forecast['yhat'] = df.apply({:.7f}.format(forecast['yhat']), axis = 1)