First Post

My first blogpost

What this blog is about:

  • Sharing my newest uses of machine learning
  • Showcasing my progress to do EDA and Data Visualization
  • Talking about my projects
  • And sharing and discussing papers/articles i found interesting
In [1]:
import matplotlib.pyplot as plt
%matplotlib inline
plt.hist([10,5,7,10,1,1,2,3,5])
Out[1]:
(array([2., 1., 1., 0., 2., 0., 1., 0., 0., 2.]),
 array([ 1. ,  1.9,  2.8,  3.7,  4.6,  5.5,  6.4,  7.3,  8.2,  9.1, 10. ]),
 <a list of 10 Patch objects>)