You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In R
preperiod <- subset(impact$series, cum.effect == 0)
Looks like
impact$series ioutput return all the outout where cum.effect is 0.
I want to get the value that refer in R. what would be the python using inference?
This respoinse and point.pred value
preperiod$res <- preperiod$response - preperiod$point.pred
is it possible to know Which one is equivalent to point prediction ?
Thank you in advance!
The text was updated successfully, but these errors were encountered:
Not sure if I understood correctly your question but if your looking for the equivalents of response and point.pred it think they would be ci.post_data[:, 0] and ci.complete_preds_means (where date < pre_period).
I'm trying to find dw score and mape value
In R
preperiod <- subset(impact$series, cum.effect == 0)
Looks like
impact$series ioutput return all the outout where cum.effect is 0.
I want to get the value that refer in R. what would be the python using inference?
This respoinse and point.pred value
preperiod$res <- preperiod$response - preperiod$point.pred
is it possible to know Which one is equivalent to point prediction ?
Thank you in advance!
The text was updated successfully, but these errors were encountered: