熊猫:复合方法有什么用?

时间:2018-09-10 03:33:16

标签: python pandas

我发现了大熊猫compound dataframe method documentation,但确实很简洁。我试图在一个简单的数据框上运行它,但不了解其实用程序。这是我的示例:

storeInstance => 
functionToCallWithAnActionThatWillSendItToTheNextMiddleware =>
actionThatDispatchWasCalledWith => 
valueToUseAsTheReturnValueOfTheDispatchCall

我应该使用这种方法做什么?

1 个答案:

答案 0 :(得分:4)

这更像是贷款计算-复利

enter image description here

df.compound()
Out[143]: 
a    14
b    47
dtype: int32

对于列a

enter image description here