Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 python 2.7.3 和 pandas 0.10.1,当我尝试使用 ** 操作来计算功率(数学,而不是热力学)时,我收到了弃用警告。在文档中,它涵盖了在 Series 和 DataFrame 算术运算中使用 add、sub、mul 和 div。但是,我找不到任何涵盖 ** 的东西,例如 3 ** 2 = 9。除了使用 ** 并希望最好的情况下,我还能做什么?
要计算时间序列和数据框之间的指数,应该这样做:
dataFrame.pow(timeSeries, axis=0)
要计算级数和标量之间的指数,仍然可以这样做:
timeSeries ** exponent