为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用用户输入在熊猫中创建列

如何使用用户输入在熊猫中创建列

小唯快跑啊 2023-03-08 15:58:51
我有一个数据表:sample_data = {'Sample': ['A', 'B', 'A', 'B'],                'Surface': ['Top', 'Bottom', 'Top', 'Bottom'],                'Intensity' : [21, 32, 14, 45]}sample_dataframe = pd.DataFrame(data=sample_data)我想添加用户输入以创建基于“示例”列的“条件”列。下面的函数返回错误“TypeError: 'DataFrame' object is not callable”def get_choice(df, column):    for i in column:        user_input = input('Condition= ')        df['Condition'] = df(user_input)    return dfget_choice(sample_dataframe, 'Sample')
查看完整描述

1 回答

?
森栏

TA贡献1810条经验 获得超5个赞

我相信您在尝试将与样本中的元素对应的输入添加到新列中。


import pandas as pd

sample_data = {'Sample': ['A', 'B', 'A', 'B'],

                'Surface': ['Top', 'Bottom', 'Top', 'Bottom'],

                'Intensity' : [21, 32, 14, 45]}

sample_dataframe = pd.DataFrame(data=sample_data)

def get_choice(df, column):

    user_input=[]

    for i in df[column]:

        print(i)

        user_input.append(input('Condition= '))

    df['Condition'] = user_input

    return df


print(get_choice(sample_dataframe, 'Sample'))


查看完整回答
反对 回复 2023-03-08
  • 1 回答
  • 0 关注
  • 73 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信