您的位置:首页 > 编程语言 > Python开发

华盛顿大学机器学习基础:案例研究week2

2017-10-21 21:03 330 查看
利用Python学习简单的数据操作

import graphlab
sales = graphlab.SFrame('home_data.gl/')
#exploring the data for housing sales
graphlab.canvas.set_target('ipynb')
sales.show(view="Scatter Plot",x="sqft_living",y="price")




#create a simple regression model of sqft_living to price
train_data,test_data = sales.random_split(.8,seed =0)
#build the regression model
sqft_model = graphlab.linear_regression.create(train_data,target="price",features=['sqft_living'])




print(test_data['price'].mean())
print(sqft_model.evaluate(test_data))




# let's show what our predictions look like
import matplotlib.pyplot as plt
%matplotlib inline
plt.plot(test_data['sqft_living'],test_data['price'],'.',       test_data['sqft_living'],sqft_model.predict(test_data),'-')




sqft_model.get('coefficients')




# explore other features in the data
my_features=['bedrooms','bathrooms','sqft_living','sqft_lot','floors','zipcode']
sales[my_features].show()




sales.show(view='BoxWhisker Plot',x='zipcode',y='price')




# build a regression model with more features
my_features_model = graphlab.regression.create(train_data,target='price',features=my_features)




print(sqft_model.evaluate(test_data))
print(my_features_model.evaluate(test_data))




# apply learned models to predict prices of 3 houses
house1 = sales[sales['id']=='5309101200']




<img src="rich.jpeg">#这个语句要写在esc+M下才能出现图片






# prediction for a second, fancier house
house2 = sales[sales['id']=='1925069082']


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python 机器学习