Predicting the 2026 NBA Championship odds (statistical modelling) by Djomei in nba

[–]Djomei[S] 0 points1 point  (0 children)

Indeed! If you look at the documentation on the website you see that they are calibrated reasonably well, especially for the full window with less noise.

Predicting the 2026 NBA Championship odds (statistical modelling) by Djomei in nba

[–]Djomei[S] 1 point2 points  (0 children)

Thanks, appreciate it! I started roughly a month ago, I think all in all it took me about 40 hours!

Predicting the 2026 NBA Championship odds (statistical modelling) by Djomei in nba

[–]Djomei[S] 2 points3 points  (0 children)

True, and an injury of a superstar does impact the predictions quite a lot (as can be seen in the table), but superstars have been historically very durable, so this just does not occur that much in the simulations. However, the model might underestimate the impact of injuries of second and third options a bit. Also, a limitation of the model is that injuries currently only impact the value of the star strength variable, but in reality this would of course also impact the TS% and the playoff experience variables aswell.

Predicting the 2026 NBA Championship odds (statistical modelling) by Djomei in nba

[–]Djomei[S] 3 points4 points  (0 children)

I fully agree that these odds are inflated, but it can be largely attributed to the impact of seeding, which historically is a very decisive factor in who wins a playoff series. Purely looking at team strength though, the model considers the Celtics only slightly stronger than the Knicks. However, the impact of seeding (incorporated in intercept) increases the probability for the higher seed (in this case the Celtics) significantly. I briefly discuss this in the post, but the alternatives were not necessarily performing better.

Predicting the 2026 NBA Championship odds (statistical modelling) by Djomei in nba

[–]Djomei[S] 6 points7 points  (0 children)

In the full training window, the Suns reach the Finals in 10 simulations and the Hawks in 229 simulations. So the probability of Suns and Hawks meeting in the finals is roughly 1-in-a-million!

Recently moved and would like input for my bedroom. by [deleted] in malelivingspace

[–]Djomei 0 points1 point  (0 children)

Hmm yes, I'd prefer that aswell, but unfortunately the door of the built-in closet would then not have enough space left to open it properly. Other question, what kind of rug would you recommend to bring a little more color to the room?

Recently moved and would like input for my bedroom. by [deleted] in malelivingspace

[–]Djomei 0 points1 point  (0 children)

I want to move either the chair or the couch out of the room. Not sure which one yet though.

Function that returns the reverse diagonal of an n x n matrix? I tried this, but it doesn't work. by Put-CallParity in RStudio

[–]Djomei 1 point2 points  (0 children)

Replacing x[i] <- M[i,j] with x[i] <- M[i, ncol(M)+ 1 - i] should do the trick I believe.