关于Pandas中的部分索引技巧

关于Pandas中的部分索引技巧

import pandas as pd
import numpy as np
obj=np.arange(9).reshape(3,3)
obj
array([[0, 1, 2],
       [3, 4, 5],
       [6, 7, 8]])

Series:

ser1=pd.Series(range(9))
ser1

ser1.index=['a','b','c','d','e','f','g','h','i']

ser1

a    0
b    1
c    2
d    3
e    4
f    5
g    6
h    7
i    8
dtype: int64
obj2=np.arange(9).reshape(3,3)

DataFrame:

df1=pd.DataFrame(obj2,columns=range(3),index=['a','b','c'])
# .ioc与.iloc 都用于行索引(index) 
# .loc 标签索引
# .iloc 位置(index)索引

df1.iloc[2]
0    6
1    7
2    8
Name: c, dtype: int32
df1.loc['b']
0    3
1    4
2    5
Name: b, dtype: int32
df1.ix[1]
C:\Python\lib\site-packages\ipykernel_launcher.py:1: DeprecationWarning: 
.ix is deprecated. Please use
.loc for label based indexing or
.iloc for positional indexing

See the documentation here:
http://pandas.pydata.org/pandas-docs/stable/indexing.html#ix-indexer-is-deprecated
  """Entry point for launching an IPython kernel.





0    3
1    4
2    5
Name: b, dtype: int32
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值