Skip to content

Commit

Permalink
stan demos
Browse files Browse the repository at this point in the history
  • Loading branch information
Jachym.Barvinek committed Aug 3, 2024
1 parent 1bbc88b commit 474e60e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/stan_demos/ols_multivariate.stan
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
data {
int<lower=1> K; // num features
int<lower=1> K; // num features
int<lower=K> N; // num samples
matrix[N, K] x; // features
vector[N] y; // response
matrix[N, K] x; // features
vector[N] y; // response
}
parameters {
vector[K] beta;
Expand Down

0 comments on commit 474e60e

Please sign in to comment.