Skip to content

Instantly share code, notes, and snippets.

@letthedataconfess
Created February 1, 2021 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save letthedataconfess/81dd8c70a6cd774ad2dabbf167a35762 to your computer and use it in GitHub Desktop.
Save letthedataconfess/81dd8c70a6cd774ad2dabbf167a35762 to your computer and use it in GitHub Desktop.
Outlier detection
import matplotlib.pyplot as plt
x = [5,7,8,10,3,17,4,9,7,9,8,9,6]
y = [40,36,47,48,120,46,67,48,31,134,50,35,56]
plt.scatter(x, y)
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment