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
import pystan
model_code = 'parameters {real y;} model {y ~ normal(0,1);}'
model = pystan.StanModel(model_code=model_code)
y = model.sampling().extract()['y']
y.mean() # with luck the result will be near 0
The text was updated successfully, but these errors were encountered:
basic test:
https://stackoverflow.com/questions/56701359/running-setup-py-install-for-fbprophet-error
The text was updated successfully, but these errors were encountered: