在自己定义的函数python中引用列和字符串

我正在编写一个有 3 个参数的函数: country_metric(df, country, column)


这是[参数]单独的功能。


df- 数据框


country- 一个字符串(可以假设是一个条目,可以在名为 的列中找到location)


column- 一个字符串(可以假定为一列(位置除外),可在df


该函数应返回给定国家/地区的行和根据第二个字符串标记的列的值:


我的功能不起作用,因为我不知道如何正确表达该功能。这是我到目前为止所拥有的:


def country_metric(df, country,column):

    for column in df:

        if df["location"] == country:

            return df[df["location"] == country]["column"]

我似乎无法在堆栈上找到任何有关在定义自己的函数时引用数据集中的列的信息。我尝试.items()按照 python 的建议使用,然后打印出来。从现在开始我就在挣扎。 AttributeError: 'DataFrame' object has no attribute 'item'


任何帮助,将不胜感激。


月关宝盒
浏览 74回答 1
1回答

茅侃侃

与按列名称过滤器一起使用,如果列中DataFrame.loc只有一个,则输出是一个元素系列,如果重复,则输出为 2 个或多个值,如果不匹配,则输出为空:countrylocationSeriescountrySeriescountrydef country_metric(df, country,column):     return df.loc[df["location"] == country, column]如果需要第一个匹配值,如果没有匹配,则没有错误,country请使用iter技巧next:def country_metric(df, country,column):     return iter(next(df.loc[df["location"] == country, column]), 'no match')
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python