Pages

Wednesday, November 22, 2017

Testng blog post

Untitled
In [1]:
%matplotlib inline
import matplotlib.pyplot as plt
import numpy as np
In [2]:
x = np.arange(-5,5,0.1)
y = x**2
plt.plot(x,y,'.'); plt.grid()

No comments:

Post a Comment

SVM on Iris Data - Part 1

iris_svm_1 In [49]: import matplotlib import matplotlib.pyplot as plt % matplot...