Skip to content

Commit e75a828

Browse files
author
Ben Goodrich
committed
remove extra fit=fit
1 parent 8c8a439 commit e75a828

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

misc/garch/koyck-sim.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ y[1] <- rnorm(1,alpha + beta * x[1],sigma);
1111
for (t in 2:T)
1212
y[t] <- rnorm(1,alpha + beta * x[t] + lambda * y[t-1], sigma);
1313

14-
fit <- stan(file="koyck.stan", data=c("T","y","x"), iter=500, chains=4, fit=fit);
14+
fit <- stan(file="koyck.stan", data=c("T","y","x"), iter=500, chains=4);

0 commit comments

Comments
 (0)