Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python Pandas - 특정 위치에 새 인덱스 값 삽입

<시간/>

특정 위치에 새 인덱스 값을 삽입하려면 index.insert()를 사용하세요. Pandas의 메소드. 먼저 필요한 라이브러리를 가져옵니다. -

import pandas as pd

팬더 인덱스 생성 -

index = pd.Index(['Car','Bike','Airplane','Ship','Truck'])

인덱스 표시 -

print("Pandas Index...\n",index)

insert() 메서드를 사용하여 특정 위치에 새 값을 삽입합니다. insert()의 첫 번째 매개변수는 새 인덱스 값이 배치되는 위치입니다. 여기서 2는 새 인덱스 값이 인덱스 2, 즉 위치 3에 삽입됨을 의미합니다. 두 번째 매개변수는 삽입할 새 인덱스 값입니다.

print("\nAfter inserting a new index value...\n", index.insert(2, 'Suburban'))

예시

다음은 코드입니다 -

import pandas as pd

# Creating the Pandas index
index = pd.Index(['Car','Bike','Airplane','Ship','Truck'])

# Display the index
print("Pandas Index...\n",index)

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# Insert a new value at a specific position using the insert() method
# The first parameter in the insert() is the location where the new index value is placed.
# The 2 here means the new index value gets inserted at index 2 i.e. position 3
# The second parameter is the new index value to be inserted.
print("\nAfter inserting a new index value...\n", index.insert(2, 'Suburban'))

출력

이것은 다음과 같은 출력을 생성합니다 -

Pandas Index...
Index(['Car', 'Bike', 'Airplane', 'Ship', 'Truck'], dtype='object')

The dtype object...
object

After inserting a new index value...
Index(['Car', 'Bike', 'Suburban', 'Airplane', 'Ship', 'Truck'], dtype='object')