Pandas 係列是帶有軸標簽的一維ndarray。標簽不必是唯一的,但必須是可哈希的類型。該對象同時支持基於整數和基於標簽的索引,並提供了許多方法來執行涉及索引的操作。
Pandas Series.get()
函數從給定鍵(DataFrame列,Panel slice等)的對象中獲取項目。如果未找到,則返回默認值。
用法: Series.get(key, default=None)
參數:
key: Object
返回:值:與對象中包含的項目類型相同
範例1:采用Series.get()
函數獲取給定係列對象中傳遞的索引標簽的值。
# importing pandas as pd
import pandas as pd
# Creating the Series
sr = pd.Series(['New York', 'Chicago', 'Toronto', None, 'Rio'])
# Create the Index
index_ = ['City 1', 'City 2', 'City 3', 'City 4', 'City 5']
# set the index
sr.index = index_
# Print the series
print(sr)
輸出:
現在我們將使用Series.get()
函數返回給定係列對象中傳遞的索引標簽的值。
# return the value corresponding to
# the passe index label
result = sr.get(key = 'City 3')
# Print the result
print(result)
輸出:
正如我們在輸出中看到的,Series.get()
函數已返回與傳遞的索引標簽相對應的值。
範例2:采用Series.get()
函數獲取給定係列對象中傳遞的索引標簽的值。
# importing pandas as pd
import pandas as pd
# Creating the Series
sr = pd.Series([11, 21, 8, 18, 65, 84, 32, 10, 5, 24, 32])
# Create the Index
index_ = pd.date_range('2010-10-09', periods = 11, freq ='M')
# set the index
sr.index = index_
# Print the series
print(sr)
輸出:
現在我們將使用Series.get()
函數返回給定係列對象中傳遞的索引標簽的值。
# return the value corresponding to
# the passe index label
result = sr.get(key = '2011-03-31')
# Print the result
print(result)
輸出:
正如我們在輸出中看到的,Series.get()
函數已返回與傳遞的索引標簽相對應的值。
相關用法
- Python pandas.map()用法及代碼示例
- Python Pandas Series.sum()用法及代碼示例
- Python Pandas Series.loc用法及代碼示例
- Python Pandas TimedeltaIndex.take()用法及代碼示例
- Python Pandas Series.dt.second用法及代碼示例
- Python Pandas Series.pop()用法及代碼示例
- Python Pandas Series.ix用法及代碼示例
- Python Pandas Period.second用法及代碼示例
- Python Pandas.Categorical()用法及代碼示例
- Python Pandas PeriodIndex.second用法及代碼示例
- Python Pandas Series.var用法及代碼示例
- Python Pandas Series.iat用法及代碼示例
- Python Pandas dataframe.sub()用法及代碼示例
- Python Pandas Series.where用法及代碼示例
- Python Pandas Period.day用法及代碼示例
注:本文由純淨天空篩選整理自Shubham__Ranjan大神的英文原創作品 Python | Pandas Series.get()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。