Python是进行数据分析的一种出色语言,主要是因为以数据为中心的python软件包具有奇妙的生态系统。 Pandas是其中的一种,使导入和分析数据更加容易。
Pandas Index.delete()
函数返回删除了传递位置的新对象。我们可以以列表的形式传递多个要删除的位置。
用法: Index.delete(loc)
参数:
loc:标量/索引列表
返回:new_index:索引
范例1:采用Index.delete()
函数删除索引中的第一个值。
# importing pandas as pd
import pandas as pd
# Creating the Index
idx = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'])
# Print the Index
idx
输出:
让我们删除“ Jan”月份。它出现在第0个索引处,因此我们会将0作为参数传递给该函数。
# delete the first label in the given Index
idx.delete(0)
输出:
从输出中可以看到,该函数返回了一个对象,该对象的第一个标签已删除。
范例2:采用Index.delete()
函数删除索引中的多个标签。
# importing pandas as pd
import pandas as pd
# Creating the Index
idx = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'])
# Print the Index
idx
输出:
让我们从索引中删除第二,第三,第四和第五个索引。我们将要删除的值列表传递给该函数。
# to delete values present at 2nd, 3rd, 4th and 5th place in the Index.
idx.delete([2, 3, 4, 5])
输出:
如我们所见,与索引中传递的值相对应的标签已被删除。
相关用法
- Python pandas.map()用法及代码示例
- Python Pandas Series.str.len()用法及代码示例
- Python Pandas.factorize()用法及代码示例
- Python Pandas TimedeltaIndex.name用法及代码示例
- Python Pandas dataframe.ne()用法及代码示例
- Python Pandas Series.between()用法及代码示例
- Python Pandas DataFrame.where()用法及代码示例
- Python Pandas Series.add()用法及代码示例
- Python Pandas.pivot_table()用法及代码示例
- Python Pandas Series.mod()用法及代码示例
- Python Pandas Dataframe.at[ ]用法及代码示例
- Python Pandas Dataframe.iat[ ]用法及代码示例
- Python Pandas.pivot()用法及代码示例
- Python Pandas dataframe.mul()用法及代码示例
- Python Pandas.melt()用法及代码示例
注:本文由纯净天空筛选整理自Shubham__Ranjan大神的英文原创作品 Python | Pandas Index.delete()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。