Skip to content

Instantly share code, notes, and snippets.

@Vsanku01
Created May 30, 2020 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Vsanku01/4f67d29e355cdb88748d2d87e354e2c2 to your computer and use it in GitHub Desktop.
Save Vsanku01/4f67d29e355cdb88748d2d87e354e2c2 to your computer and use it in GitHub Desktop.
plot forecast
forecast = scaler.inverse_transform(forecast)
forecast_index = np.arange(50.1,58.1,step=0.1)
plt.plot(df.index,df['Sine'])
plt.plot(forecast_index,forecast)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment