第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

用python實(shí)現(xiàn)數(shù)據(jù)可視化代碼如下,為啥報(bào)錯(cuò)AttributeError: Unknown property market

用python實(shí)現(xiàn)數(shù)據(jù)可視化代碼如下,為啥報(bào)錯(cuò)AttributeError: Unknown property market

# -*- 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('花瓣長(zhǎng)度')plt,ylabel('花莖長(zhǎng)度')?plt,legend(loc='upper left')plt.show() ??
查看完整描述

1 回答

已采納
?
產(chǎn)品經(jīng)理不是經(jīng)理

TA貢獻(xiàn)481條經(jīng)驗(yàn) 獲得超143個(gè)贊

不是market,是marker.

查看完整回答
1 反對(duì) 回復(fù) 2018-05-24
  • 1 回答
  • 0 關(guān)注
  • 3045 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)