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

Python Pandas - 마지막 인덱스에서 첫 번째 인덱스에 새 인덱스 값 삽입

<시간/>

마지막 인덱스에서 첫 번째 인덱스에 새 인덱스 값을 삽입하려면 index.insert()를 사용합니다. 방법. 마지막 인덱스 값을 -1로 설정하고 매개변수로 삽입할 값을 설정합니다.

먼저 필요한 라이브러리를 가져옵니다 -

import pandas as pd

팬더 인덱스 생성 -

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

인덱스 표시 -

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

insert() 메서드를 사용하여 마지막 인덱스에서 첫 번째 인덱스에 새 값을 삽입합니다. insert()의 첫 번째 매개변수는 새 인덱스 값이 배치되는 위치입니다. 여기서 -1은 새 인덱스 값이 마지막 인덱스에서 첫 번째 인덱스에 삽입됨을 의미합니다. 두 번째 매개변수는 삽입할 새 인덱스 값입니다.

index.insert(-1, '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 the first index from the last using the insert() method.
# The first parameter in the insert() is the location where the new index value is placed.
# The -1 here means the new index value gets inserted at the first index from the last.
# The second parameter is the new index value to be inserted.
print("\nAfter inserting a new index value...\n", index.insert(-1, 'Suburban'))

출력

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

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

The dtype object...
object

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