Python | Pandas Index.dtype

Опубликовано: 27 Марта, 2022

Pandas Index - это неизменяемый ndarray, реализующий упорядоченный, нарезанный набор. Это базовый объект, который хранит метки осей для всех объектов pandas.

Pandas Index.dtype attribute return the data type (dtype) of the underlying data of the given Index object.

Syntax: Index.dtype

Parameter : None

Returns : dtype

Example #1: Use Index.dtype attribute to find the dtype of the underlying data of the given Index object.

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index(["Jan", "Feb", "Mar", "Apr", "May"])
  
# Print the index
print(idx)

Выход :

Now we will use Index.dtype attribute to find the data type of the underlying data of the given series object.

# return the dtype
result = idx.dtype
  
# Print the result
print(result)

Выход :

As we can see in the output, the Index.dtype attribute has returned object as the data type of the underlying data of the given Index object.

Example #2 : Use Index.dtype attribute to find the dtype of the underlying data of the given Index object.

Выход :

Now we will use Index.dtype attribute to find the data type of the underlying data of the given series object.

# return the dtype
result = idx.dtype
  
# Print the result
print(result)

Выход :

As we can see in the output, the Index.dtype attribute has returned int64 as the data type of the underlying data of the given Index object.

Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.

Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.