gpt4 book ai didi

python - 我可以将矢量化函数应用于 Pandas 数据框吗?

转载 作者:行者123 更新时间:2023-11-28 21:45:00 25 4
gpt4 key购买 nike

我是 pandasnumpy 的新手,我正在尝试找出做某些事情的最佳方法。

现在我正尝试在 dataframe 的每一行上调用一个函数。如果我将三个 numpy 数组传递给此函数,它会非常快,但是在 dataframe 上使用 apply 会非常慢。

我的猜测是 numpy 在第一种情况下使用矢量化函数,而在第二种情况下则没有。有没有办法让 pandas 使用该优化?基本上,在伪代码中,我认为 apply 正在做类似 for row in frame: func(row['a'], row['b'], row['c']) 但我希望它执行 func(col['a'], col['b'], col['c'])

这是我正在尝试做的一个例子。

import numpy as np
import pandas as pd
from scipy.stats import beta

count = 100000

# If I start with a given dataframe and use apply, it's very slow

df = pd.DataFrame(np.random.uniform(0, 1, size=(count, 3)), columns=['a', 'b', 'c'])
df.apply(lambda frame: beta.cdf(frame['a'], frame['b'], frame['c']), axis=1)

# However, if I split out each column into a numpy array, this is very fast.

a = df['a'].as_matrix()
b = df['b'].as_matrix()
c = df['c'].as_matrix()

beta.cdf(a, b, c)

# But at this point I've lost the context of the dataframe.
# I would like to keep the results in a new column for further processing

最佳答案

不清楚您为什么要尝试使用 apply。你可以只做 beta.cdf(df.a, df.b, df.c)

关于python - 我可以将矢量化函数应用于 Pandas 数据框吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40196231/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com