Skip to content

Instantly share code, notes, and snippets.

View harbolkn's full-sized avatar

Kris Harbold harbolkn

View GitHub Profile

Keybase proof

I hereby claim:

  • I am harbolkn on github.
  • I am harbolkn (https://keybase.io/harbolkn) on keybase.
  • I have a public key ASARFShcFhG9iHqJnUqJp5_XgHDMJSG8MR3979Gtrb1iswo

To claim this, I am signing this object:

@harbolkn
harbolkn / ex1.py
Created March 11, 2015 20:42
Andrew Ng ML class - ex1
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
sns.set_palette("Paired")
def plot_data(x, y):
plt.scatter(x, y)
plt.show()