數學之路-python資料處理(2)

來源:互聯網
上載者:User

標籤:python   資料分析   

插入列

# -*- coding: utf-8 -*-

"""

Created on Mon Mar 09 11:21:02 2015

@author: [email protected]

"""

print u"python資料分析\n"

import pandas as pd

import numpy as np

#構造商品銷量資料

mydf = pd.DataFrame({u‘商品地區編碼‘:[1,1,3,2,4,3],u‘商品A‘:np.random.randint(0,1000,size=6),u‘商品B‘:np.random.randint(0,1000,size=6),u‘商品C‘:np.random.randint(0,1000,size=6)})

allsales=mydf.values[:,1]+mydf.values[:,2]+mydf.values[:,3]

#插入一列

mydf.insert(0,u‘總銷量‘,pd.Series(allsales))

#按2個列名先排序,by後跟列名,表示按列名

mynewdf=mydf.sort_index(axis=0, by=[u‘商品地區編碼‘,u‘總銷量‘],ascending=[True,False])

print mynewdf

 

python資料分析

 

    總銷量  商品A  商品B  商品C  商品地區編碼

0 1436  805  858 577       1

1 1370  422  606 763       1

3  397  445   41 354       2

5  851  737  629 219       3

2  815  682  133 679       3

4  749  999  521 224       4

>>> 

 

下面也是一個例子

# -*- coding: utf-8 -*-

"""

Created on Mon Mar 09 11:21:02 2015

@author: [email protected]

"""

本部落格所有內容是原創,如果轉載請註明來源http://blog.csdn.net/myhaspl/

print u"python資料分析\n"

import pandas as pd

import numpy as np

#構造商品銷量資料

mydf = pd.DataFrame({u‘商品地區編碼‘:[1,1,3,2,4,3],u‘商品A‘:np.random.randint(0,1000,size=6),u‘商品B‘:np.random.randint(0,1000,size=6),u‘商品C‘:np.random.randint(0,1000,size=6)})

allsales=mydf.values[:,1]+mydf.values[:,2]+mydf.values[:,3]

#插入一列

mydf.insert(0,u‘總銷量‘,pd.Series(allsales))

print mydf

#刪除列

mynewdf=mydf.drop([u‘總銷量‘],axis=1)

print mynewdf

#移動列

myb=mynewdf.pop(u‘商品B‘)

mynewdf.insert(2,u‘商品B‘,myb)

print mynewdf

 

結果如下:

python資料分析

 

    總銷量  商品A  商品B  商品C  商品地區編碼

0  964   80  940  23       1

1 1188  373  450 737       1

2 1137  907  642 492       3

3 1001  646  952  47       2

4  899  526   19 876       4

5 1225  342  430 792       3

   商品A  商品B  商品C  商品地區編碼

0  80  940   23      1

1 373  450  737      1

2 907  642  492      3

3 646  952   47      2

4 526   19  876      4

5 342  430  792      3

   商品A  商品C  商品B  商品地區編碼

0  80   23  940      1

1 373  737  450      1

2 907  492  642      3

3 646   47  952      2

4 526  876   19      4

5 342  792  430      3

>>> 

數學之路-python資料處理(2)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.