Skip to content

Instantly share code, notes, and snippets.

@nisargap
Created February 21, 2021 01:43
Show Gist options
  • Save nisargap/8e336f9b2aafbde380547f9a4d1e9377 to your computer and use it in GitHub Desktop.
Save nisargap/8e336f9b2aafbde380547f9a4d1e9377 to your computer and use it in GitHub Desktop.
import matplotlib.pyplot as plt
predicted_y = []
actual_y = []
plt.scatter(x, predicted_y, color="green")
plt.scatter(x, actual_y, color="blue")
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment