Skip to content

Instantly share code, notes, and snippets.

@YoinkBird
YoinkBird / .gitignore
Created October 21, 2017 22:44 — forked from nitaku/README.md
Minimal JSON HTTP server in python
# git
*.sw?
# https://github.com/ipython/ipynb/blob/master/.gitignore
# ---- project custom ----
# the json storage area
res/*
## generate two sets of points
def generate_samples(numsamples, mean, cov):
samples = [np.random.multivariate_normal(mean,cov) for i in range(numsamples)]
df = pd.DataFrame(samples)
print("covariance of sample")
print(np.cov(df.T))
return df
# label 2