Skip to content

Instantly share code, notes, and snippets.

@crhea93
Last active November 1, 2020 19:40
Show Gist options
  • Save crhea93/f389e465502b49a4622e1add0a80643b to your computer and use it in GitHub Desktop.
Save crhea93/f389e465502b49a4622e1add0a80643b to your computer and use it in GitHub Desktop.
# Define datasets
X = [1, 1.25, 1.8, 1.9, 2.21, 2.85]
Y = [1.1, 1.14, 1.8, 1.85, 2.25, 2.9]
print(X,Y)
# Let's see what this looks like
with plt.xkcd():
plt.scatter(X, Y)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment