-
-
Save khuangaf/7f2a4352d58b02b89cbebea6b7d65d24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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