python - 使用 Numpy 和 Pandas 优化 Python 代码

标签 python python-3.x pandas numpy

我有以下代码可以运行:

import numpy as np
import pandas as pd
colum1 = [0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05,0.05]
colum2 = [1,2,3,4,5,6,7,8,9,10,11,12]
colum3 = [0.85,0.80,0.80,0.80,0.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0]
colum4 = [1743.85, 1485.58, 1250.07, 1021.83, 818.96, 628.05, 455.40, 319.03, 190.86 , 97.07, 26.96 , 0.00]
df = pd.DataFrame({
    'colum1' : colum1,
    'colum2' : colum2,
    'colum3' : colum3,
    'colum4' : colum4,
});

df['result'] = 0
for i in range(len(colum2)):
    df['result'] = np.where(
        df['colum2'] <= 5,
        np.where(
            df['colum2'] == 1,
            df['colum4'],
            np.where(
                ( df['colum4'] - (df['result'].shift(1) * (df['colum1'] * df['colum3'])) )>0,
                ( df['colum4'] - (df['result'].shift(1) * (df['colum1'] * df['colum3'])) ),
                0
            )
        ),
        np.where(
            ( df['colum4'] - (df['result'].shift(1) * df['colum1']) )>0,
            ( df['colum4'] - (df['result'].shift(1) * df['colum1']) ),
            0
        )
    )

并且我需要执行相同的操作而不诉诸 for 循环。 这将非常有帮助,因为我正在处理数千条记录,这非常慢。

我的预期结果如下:

    colum1  colum2  colum3   colum4       result
0     0.05       1    0.85  1743.85  1743.850000
1     0.05       2    0.80  1485.58  1415.826000
2     0.05       3    0.80  1250.07  1193.436960
3     0.05       4    0.80  1021.83   974.092522
4     0.05       5    0.85   818.96   777.561068
5     0.05       6    0.00   628.05   589.171947
6     0.05       7    0.00   455.40   425.941403
7     0.05       8    0.00   319.03   297.732930
8     0.05       9    0.00   190.86   175.973354
9     0.05      10    0.00    97.07    88.271332
10    0.05      11    0.00    26.96    22.546433
11    0.05      12    0.00     0.00     0.000000

最佳答案

第一步是删除索引上的循环,并将大于 0 的数字的测试替换为 np.maximum 。这是可行的,因为 np.where(a > 0, a, 0) 对于我们的目的来说相当于 np.maximum(0, a)

同时单独定义较长的表达式以使代码可读:

s1 = df['colum4'] - (df['result'].shift(1) * (df['colum1'] * df['colum3']))
s2 = df['colum4'] - (df['result'].shift(1) * df['colum1'])

df['result'] = np.where(df['colum2'] <= 5,
                        np.where(df['colum2'] == 1, df['colum4'],
                                 np.maximum(0, s1)),
                        np.maximum(0, s2))

下一步是使用np.select删除嵌套的 np.where 语句:

m1 = df['colum2'] <= 5
m2 = df['colum2'] == 1

conds = [m1 & m2, m1 & ~m2]
choices = [df['colum4'], np.maximum(0, s1)]

df['result'] = np.select(conds, choices, np.maximum(0, s2))

此版本将更易于管理。

关于python - 使用 Numpy 和 Pandas 优化 Python 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52730328/

相关文章:

python - 将日期时间 ns 转换为每日格式

python - 将数据库连接作为参数传递给方法是一种好习惯吗?

python - 更改 IPython 流编码

python-3.x - 在 python 中删除 AWS Lambda 函数上的触发器

python - 将百分位数计算为 Pandas 中的一列

python - 如何将我的数据框拆分为不同的数据框?

python - Pandas 左外连接多个列上的多个数据框

python - Sublime Text-如何添加任何 Python 模块的自动完成功能?

python - 使用 ast.literal_eval 时出现格式错误的字符串

python - 使用 cx_Freeze(包括 PyQt5)创建 exe 时出现 ValueError