Python | Дождь Series.loc
Python - отличный язык для анализа данных, в первую очередь из-за фантастической экосистемы пакетов Python, ориентированных на данные. Pandas - один из таких пакетов, который значительно упрощает импорт и анализ данных.
Серия Pandas - это одномерный массив ndarray с метками осей. Этикетки не обязательно должны быть уникальными, но должны быть хешируемого типа. Объект поддерживает индексирование как на основе целых чисел, так и на основе меток и предоставляет множество методов для выполнения операций, связанных с индексом.
Pandas Series.loc attribute is used to access a group of rows and columns by label(s) or a boolean array in the given Series object.
Syntax:Series.loc
Parameter : None
Returns : series
Example #1: Use Series.loc attribute to select some values from the given Series object based on the labels.
# importing pandas as pdimport pandas as pd # Creating the Seriessr = pd.Series(["New York", "Chicago", "Toronto", "Lisbon"]) # Creating the row axis labelssr.index = ["City 1", "City 2", "City 3", "City 4"] # Print the seriesprint(sr) |
Выход :

Now we will use Series.loc attribute to return the values of the selected labels in the given Series object.
# return the selected values.sr.loc[["City 4", "City 3", "City 1"]] |
Выход :

As we can see in the output, the Series.loc attribute has returned the name of the cities whose labels were passed to it.
Example #2 : Use Series.loc attribute to select some values from the given Series object based on the labels.
# importing pandas as pdimport pandas as pd # Creating the Seriessr = pd.Series(["1/1/2018", "2/1/2018", "3/1/2018", "4/1/2018"]) # Creating the row axis labelssr.index = ["Day 1", "Day 2", "Day 3", "Day 4"] # Print the seriesprint(sr) |
Выход :

Now we will use Series.loc attribute to return the values of the selected labels in the given Series object.
# return the selected values.sr.loc[["Day 4", "Day 3", "Day 1"]] |
Output :
As we can see in the output, the Series.loc attribute has returned the name of the cities whose labels were passed to it.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.