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
As suggested by @avehtari, it would be good to have $R^2$ as a performance statistic in projpred. This could be called stats = "R2" (and stat = "R2" for suggest_size()), for example. According to @avehtari, we should go for LOO - $R^2$.
(Note that * (n / (n - 1) can be omitted because it cancels out.) In those lines, bayesboot::rudirichlet() is used. According to @avehtari, the SE could also be calculated without a Dirichlet approach, using the formula from stan-dev/loo#205 (comment).
The text was updated successfully, but these errors were encountered:
@avehtari: The SE formula provided in stan-dev/loo#205 (comment) refers to LOO - $R^2$. I guess it cannot be applied directly to K-fold CV, no CV (i.e., test dataset = training dataset), or a hold-out test dataset. Do you know of similar formulas for those cases?
As suggested by @avehtari, it would be good to have$R^2$ as a performance statistic in projpred. This could be called $R^2$ .
stats = "R2"
(andstat = "R2"
forsuggest_size()
), for example. According to @avehtari, we should go for LOO -There is also related code at
projpred/R/summary_funs.R
Lines 170 to 187 in bec6258
* (n / (n - 1)
can be omitted because it cancels out.) In those lines,bayesboot::rudirichlet()
is used. According to @avehtari, the SE could also be calculated without a Dirichlet approach, using the formula from stan-dev/loo#205 (comment).The text was updated successfully, but these errors were encountered: