亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

用python實現數據可視化代碼如下,為啥報錯AttributeError: Unknown property market

用python實現數據可視化代碼如下,為啥報錯AttributeError: Unknown property market

qq_01_15 2018-05-24 11:06:54
# -*- coding: utf-8 -*-"""Created on Tue May 22 15:56:56 2018@author: dell"""import numpy as npclass Perceptron(object):? ? def __init__(self,eta=0.01,n_iter=10):? ? ? ? self.eta=eta;? ? ? ? self.n_iter=n_iter? ? ? ? pass? ? def fit(self,X,y):? ? ? ? self.w_=np.zero(1+x.shape[1]);? ? ? ? self.errors_=[]? ? ? ? for _ in range(self,n_iter):? ? ? ? ? ? errors_=0? ? ? ? ? ? for Xi,target in zip(x,y):? ? ? ? ? ? ? ? update=self.eta*(target-self.predict(Xi))? ? ? ? ? ? ? ? self.w_[1:]+=update*Xi? ? ? ? ? ? ? ? self.w_[0]+=update;? ? ? ? ? ? ? ? errors+=int(update!=0.0)? ? ? ? ? ? ? ? self.errors_.append(errors)? ? ? ? ? ? ? ? pass? ? ? ? ? ? pass? ? def net_input(self,X):? ? ? ? return np.dot(x,self.w_[1:])+self.w_[0]? ? ? ? pass? ? def predict(self,x):? ? ? ? return np.where(self.net_input(x)>=0.0,1,-1)? ? ? ? pass? ? passfile="iris.date.csv.txt"import pandas as pddf=pd.read_csv(file,header=None)import matplotlib.pyplot as pltimport numpy as npy=df.loc[0:100,4].valuesy=np.where(y=='Iris-setosa',-1,1)print (y)X=df.iloc[0:100,[0,2]].valuesprint (X)plt.scatter(X[0:49,0],X[0:49,1],color='red',market='o',label='setosa')plt.scatter(X[50:100,0],X[50:100,1],color='blue',market='x',label='versicolor')plt.xlabel('花瓣長度')plt,ylabel('花莖長度')?plt,legend(loc='upper left')plt.show() ??
查看完整描述

1 回答

已采納
?
產品經理不是經理

TA貢獻481條經驗 獲得超143個贊

不是market,是marker.

查看完整回答
1 反對 回復 2018-05-24
  • 1 回答
  • 0 關注
  • 3015 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號