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.
当我在 Prophet 模型上调用 predict 时,平均预测是yhat,但是当我对平均趋势和季节性列求和时,这不等于 中的值yhat。
yhat
为什么列中的项总和不等于yhat,yhat_lower和yhat_upper?
yhat_lower
yhat_upper
使用以下等式预测 Prophet 的函数:
df2['yhat'] = ( df2['trend'] * (1 + df2['multiplicative_terms']) + df2['additive_terms'] )
因此,如果要手动创建,则yhat需要以给定的方式使用这三列。如果您添加任何其他列,它将被重复计算,因为它已经包含在additive_termsormultiplicative_terms中。
additive_terms
multiplicative_terms