Pandas数据帧计算

时间:2013-11-26 06:15:12

标签: python pandas dataframe

我正在尝试使用熊猫数据帧计算指标。特别是,我得到了一个结果对象

prediction = results.predict(start=1,end=len(test),exog=test)

实际值位于

给出的数据框中
test['actual']. 

我需要计算两件事:

  1. 如何计算误差平方和?所以基本上,我会按元素减法做一个元素,然后对这些元素的方块求和。

  2. 如何计算预测的平方和减去实际值的平均值?所以它会是

    (x1-mean_actual)^2 + (x2-mean_actual)^2...+(xn-mean_actual)^2
    

1 个答案:

答案 0 :(得分:6)

首先是

((prediction - test['actual']) ** 2).sum()

第二个是:

((prediction - test['actual'].mean()) ** 2).sum()