绑定数据框中的值的功能

时间:2018-11-24 17:01:47

标签: python pandas function if-statement

在主题“使用python pandas绑定列”中,但我专门尝试创建一个函数,这样我就可以重复调用它以将(值)绑定到不同数据帧和列中的值。

下面是我所拥有的,但是它抛出错误:'str'对象没有属性'isbetween'。不知道我的if陈述是否正确。任何想法表示赞赏。

def get_valueband(value):
valueband = None
if value == '':
    valueband = ''
elif value.isbetween(0,25):
    valueband = '0to25'
elif value.isbetween(25,50):
    valueband = '25to50'
elif value.isbetween(50,75):
    valueband = '50to75'
else:
    valueband = '75to100'
return valueband

turnover_question['answer_value_band'] = turnover_question.answer_value.apply(get_valueband)

0 个答案:

没有答案