Last active
November 1, 2020 19:40
-
-
Save crhea93/f389e465502b49a4622e1add0a80643b 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
# 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