python之迴歸算法

邏輯迴歸 import pandas as pda fname='E:/programCode/huigui.csv' dataf=pda.read_csv(fname) #自變量x x=dataf.iloc[:,1:4].as_matrix()#[:,1:2]中的右邊表明列取誰,左邊的表明行取誰 #因變量y y=dataf.iloc[:,0:1].as_matrix()#.as_matrix做用
相關文章
相關標籤/搜索