First Post¶
This is my first blog post. This blog is where I will share my data science and machine learning projects. I hope you enjoy!
Here's a graph of some random data.
In [6]:
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
size = 10
a = np.random.randn(size)
x = np.arange(0,1,1/size)
plt.plot(x, a)
Out[6]:
In [ ]: