Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
fix: 08-robust_robit_regression.stan numeric overflow (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
storopoli authored Jul 1, 2024
1 parent 10ae03d commit 8d5a11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stan/08-robust_robit_regression.stan
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ data {
parameters {
real alpha; // intercept
vector[K] beta; // coefficients for independent variables
real<lower=2> nu; // degrees of freedom
real<lower=2, upper=100> nu; // degrees of freedom
}
model {
// priors
Expand Down

0 comments on commit 8d5a11f

Please sign in to comment.