道歉,如果这是重复请告诉我,我很乐意删除。
我的数据集:
Index Col 1 Col 2
0 1 4, 5, 6
1 2 7, 8, 9
2 3 10, 11, 12
3 4 13, 14, 15
我正在尝试创建一个函数,该函数将特定的第1列值作为其输入,并输出第1列值及其对应的第2列值。
例如,如果我在第1列等于3时使用该函数,则该函数将返回4个值的列表:3,10,11,12
非常感谢
答案 0 :(得分:4)
def f(a):
return df.loc[df['Col 1'] == a, 'Col 2'].item()
但如果需要更一般的话:
print (df)
Col 1 Col 2
0 1 4, 5, 6
1 1 7, 8, 9
2 3 10, 11, 12
3 4 13, 14, 15
def f(a):
a = df.loc[df['Col 1'] == a, 'Col 2']
#for no match
if a.empty:
return 'no match'
#for multiple match
elif len(a) > 1:
return a
else:
#for match one value only
return a.item()
print (f(1))
0 4, 5, 6
1 7, 8, 9
Name: Col 2, dtype: object
print (f(3))
10, 11, 12
print (f(6))
no match
答案 1 :(得分:0)
只是一个简单的功能:
def getColumn(col1):
beg = 1+3*col1
return [col1] + list(range(beg, beg+3))