Skip to content

Instantly share code, notes, and snippets.

@khuangaf
Created January 1, 2018 06:32
Show Gist options
  • Save khuangaf/7f2a4352d58b02b89cbebea6b7d65d24 to your computer and use it in GitHub Desktop.
Save khuangaf/7f2a4352d58b02b89cbebea6b7d65d24 to your computer and use it in GitHub Desktop.
plt.figure(figsize=(20,10))
plt.plot(ground_true_df.times,ground_true_df.value, label = 'Actual')
plt.plot(prediction_df.times,prediction_df.value,'ro', label='Predicted')
plt.legend(loc='upper left')
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment