In [1]:
%run outlier_removal_regression.py


/Users/sunnyamrat/anaconda/envs/python2/lib/python2.7/site-packages/sklearn/cross_validation.py:41: DeprecationWarning: This module was deprecated in version 0.18 in favor of the model_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20.
  "This module will be removed in 0.20.", DeprecationWarning)

In [2]:
reg.coef_


Out[2]:
array([[ 6.36859481]])

In [3]:
reg.intercept_


Out[3]:
array([-6.91861069])

In [4]:
reg.score(ages_test, net_worths_test)


Out[4]:
0.98318945539553204

In [5]:
predictions = reg.predict(ages_train)