machine learning in coding(python):拼接未經處理資料;產生高次特徵

來源:互聯網
上載者:User

標籤:機器學習   machine learning in   產生高次特徵   合并未經處理資料   


拼接未經處理資料:

train_data = pd.read_csv('train.csv')test_data = pd.read_csv('test.csv')all_data = np.vstack((train_data.ix[:,1:-1], test_data.ix[:,1:-1]))

numpy下的合并數組vstack和hstack函數:

>>> a = np.ones((2,2))>>> b = np.eye(2)>>> print np.vstack((a,b))[[ 1.  1.] [ 1.  1.] [ 1.  0.] [ 0.  1.]]>>> print np.hstack((a,b))[[ 1.  1.  1.  0.] [ 1.  1.  0.  1.]]


產生高(2)次特徵:

def group_data(data, degree=2, hash=hash):    new_data = []    m,n = data.shape    for indicies in combinations(range(n), degree):            new_data.append([hash(tuple(v)) for v in data[:,indicies]])    return array(new_data).T

在產生高次特徵之前,先做“LabelEncoder”操作。。。。



from kaggle






著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

machine learning in coding(python):拼接未經處理資料;產生高次特徵

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.