• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Python Pandas rolling_apply两列输入应用于函数

用户头像
it1352
帮助1

问题说明

紧随此问题之后使用rolling_apply用于熊猫的Python自定义函数,有关使用rolling_apply.尽管我的函数已经取得了进步,但我仍在努力处理需要两列或更多列作为输入的函数:

Following on from this question Python custom function using rolling_apply for pandas, about using rolling_apply. Although I have progressed with my function, I am struggling to deal with a function that requires two or more columns as inputs:

创建与之前相同的设置

import pandas as pd
import numpy as np
import random

tmp  = pd.DataFrame(np.random.randn(2000,2)/10000, 
                    index=pd.date_range('2001-01-01',periods=2000),
                    columns=['A','B'])

但是稍微更改功能以占用两列.

But changing the function slightly to take two columns.

def gm(df,p):
    df = pd.DataFrame(df)
    v =((((df['A'] df['B']) 1).cumprod())-1)*p
    return v.iloc[-1]

它会产生以下错误:

pd.rolling_apply(tmp,50,lambda x: gm(x,5))

  KeyError: u'no item named A'

我认为这是因为lambda函数的输入是一个长度为50且仅第一列的ndarray,并且没有采用两列作为输入.有没有一种方法可以将两列都用作输入并在rolling_apply函数中使用它.

I think it is because the input to the lambda function is an ndarray of length 50 and only of the first column, and doesn't take two columns as the input. Is there a way to get both columns as inputs and use it in a rolling_apply function.

再次获得帮助将不胜感激...

Again any help would be greatly appreciated...

正确答案

#1

类似rolling_apply会尝试将用户func的输入转换为ndarray(查看全文

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfiihe
系列文章
更多 icon
同类精品
更多 icon
继续加载