Python | Pandas Index.data
Pandas Index - это неизменяемый ndarray, реализующий упорядоченный, нарезанный набор. Это базовый объект, который хранит метки осей для всех объектов pandas.
Pandas Index.data attribute return the data pointer of the underlying data of the given Index object.
Syntax: Index.data
Parameter : None
Returns : memory address
Example #1: Use Index.data attribute to find the memory address of the underlying data of the given Index object.
# importing pandas as pdimport pandas as pd # Creating the indexidx = pd.Index(["Jan", "Feb", "Mar", "Apr", "May"]) # Print the indexprint(idx) |
Выход :

Now we will use Index.data attribute to find the memory address of the underlying data of the given series object.
# return memory addressresult = idx.data # Print the resultprint(result) |
Выход :

As we can see in the output, the Index.data attribute has successfully returned the data pointer of the underlying data of the given Index object.
Example #2 : Use Index.data attribute to find the memory address of the underlying data of the given Index object.
Выход :

Now we will use Index.data attribute to find the memory address of the underlying data of the given series object.
# return memory addressresult = idx.data # Print the resultprint(result) |
Выход :

As we can see in the output, the Index.data attribute has successfully returned the data pointer of the underlying data of the given Index object.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.