We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d54607 commit 7b05a38Copy full SHA for 7b05a38
2 files changed
cmdstanpy_tutorial.py
@@ -3,8 +3,7 @@
3
4
# ### Import CmdStanPy classes and methods
5
6
-import os.path
7
-import sys
+import os
8
9
from cmdstanpy import CmdStanModel, cmdstan_path
10
docsrc/users-guide/hello_world.rst
@@ -31,7 +31,7 @@ given a set of N observations of i.i.d. binary data
31
32
data {
33
int<lower=0> N;
34
- int<lower=0,upper=1> y[N];
+ array[N] int<lower=0,upper=1> y;
35
}
36
parameters {
37
real<lower=0,upper=1> theta;
0 commit comments