pandas dataframe怎么删除index

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas dataframe怎么删除index相关的知识,希望对你有一定的参考价值。

参考技术A

dataframe.reset_index(drop=True)

就这么简单。

pandas文档原文:

    drop : bool, default False

    Do not try to insert index into dataframe columns. This resets the index to the default integer index.

删除pandas dataframe index中的字符范围

我有一个数据框列中的文本项列表,其中一些在结尾包含整数,一些包含括号“(额外信息)”之间的信息。其余项目只是平面文字。我想删除那些包含它们的所有整数,以及所有包含其信息的paranthesis,同时仍然保留它所在的值。

             Cost   Item Purchased  Name
Store1       22.5   Sponge          Chris
Shop         2.5    Kitty Litter    Kevyn
House (aax)  2  Spoon               Filip

我希望输出

           Cost Item Purchased  Name
Store      22.5 Sponge          Chris
Shop       2.5  Kitty Litter    Kevyn
House      2    Spoon           Filip
答案

Set up the dataframe. It would be useful in future if you put this in the question.

df = pd.DataFrame(
    {
        "cost": [22.5, 2.5, 2],
        "item purchased": ["Sponge", "kitty litter", "spoon"],
        "name": ["Chris", "Kevyn", "Filip"],
    },
    index=["Store1", "Shop", "House (aax)"],
)


# reset the index to a column.
df=df.reset_index()

# split the index and keep the first item in the lists.
df['index'] = df['index'].str.split("(").map(lambda x: x[0])

# reset the index
df = df.set_index('index')

print(df)

        cost    item purchased  name
index           
Store1  22.5    Sponge          Chris
Shop    2.5     kitty litter    Kevyn
House   2.0     spoon           Filip

以上是关于pandas dataframe怎么删除index的主要内容,如果未能解决你的问题,请参考以下文章

删除pandas dataframe index中的字符范围

DataFrame的排序

Pandas Dataframe 到 HTML 删除索引

在 Pandas DataFrame 中删除重复索引的最快方法 [重复]

Pandas学习笔记,如何删除DataFrame中的一列(行)

pandas dataframe怎么删除所有值都相同的一列