将方法作为函数中的参数传递

发布于 2025-01-23 06:50:01 字数 152 浏览 0 评论 0原文

我想将熊猫方法作为函数中的参数传递。例如:

def myfunction(dataframe, method):
    return dataframe.method

例如,我尝试通过min(),但这不起作用。感谢您的帮助!

I want to pass a pandas method as an argument in a function. For example:

def myfunction(dataframe, method):
    return dataframe.method

I tried passing min() for example but that doesn't work. Thanks for your help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

起风了 2025-01-30 06:50:01

使用 getAttr getAttr exameme

def myfunction(dataframe, method):
    return getattr(dataframe, method)()

example:exampe example: example:

myfunction(pd.DataFrame({'a': [1,2,3]}), 'min')

如果您想要方法而不是方法的输出电话:

def myfunction(dataframe, method):
    return getattr(dataframe, method)

示例:

m = myfunction(pd.DataFrame({'a': [1,2,3]}), 'min')

# then call
m()

输出:

a    1
dtype: int64

Use getattr:

def myfunction(dataframe, method):
    return getattr(dataframe, method)()

example:

myfunction(pd.DataFrame({'a': [1,2,3]}), 'min')

If you want the method and not the output of the method call:

def myfunction(dataframe, method):
    return getattr(dataframe, method)

example:

m = myfunction(pd.DataFrame({'a': [1,2,3]}), 'min')

# then call
m()

output:

a    1
dtype: int64
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文