Python | Панды Series.ix

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

Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.

Серия Pandas - это одномерный массив ndarray с метками осей. Этикетки не обязательно должны быть уникальными, но должны быть хешируемого типа. Объект поддерживает индексирование как на основе целых чисел, так и на основе меток и предоставляет множество методов для выполнения операций, связанных с индексом.

Pandas Series.ix attribute is a primarily label-location based indexer, with integer position fallback. It takes the label as input and returns the value corresponding to that label.

Syntax:Series.ix

Parameter : None

Returns : value

Example #1: Use Series.ix attribute to return a value lying at the specified label in the given Series object.

# importing pandas as pd
import pandas as pd
  
# Creating the Series
sr = pd.Series(["New York", "Chicago", "Toronto", "Lisbon"])
  
# Creating the row axis labels
sr.index = ["City 1", "City 2", "City 3", "City 4"
  
# Print the series
print(sr)

Выход :

Now we will use Series.ix attribute to return the value lying corresponding to the ‘City 4’ label.

# return the value
sr.ix["City 4"]

Выход :


As we can see in the output, the Series.ix attribute has returned ‘Lisbon’ as the value corresponding to the ‘City 4’ label in the given Series object.
 
Example #2 : Use Series.ix attribute to return a value lying at the specified label in the given Series object.

# importing pandas as pd
import pandas as pd
  
# Creating the Series
sr = pd.Series(["1/1/2018", "2/1/2018", "3/1/2018", "4/1/2018"])
  
# Creating the row axis labels
sr.index = ["Day 1", "Day 2", "Day 3", "Day 4"]
  
# Print the series
print(sr)

Выход :

Now we will use Series.ix attribute to return the value lying corresponding to the ‘Day 3’ label.

# return the value
sr.ix["Day 3"]

Output :

As we can see in the output, the Series.ix attribute has returned ‘3/1/2018’ as the value corresponding to the ‘Day 3’ label in the given Series object.

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

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