python添加行索引,Pandas(python):如何将列添加到dataframe的索引?

The index that I have in the dataframe (with 30 rows) is of the form:

Int64Index([171, 174,173, 172, 199..............

....175, 200])

The index is not strictly increasing because the data frame is the output of a sort().

I want to have add a column which is the series:

[1, 2, 3, 4, 5......................., 30]

How should I go about doing that?

Thanks.

解决方案

How about this,

from pandas import *

idx = Int64Index([171, 174, 173])

df = DataFrame(index = idx, data =([1,2,3]))

print df

gives me,

0

171 1

174 2

173 3

Is this what you are looking for?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值