Skip to content

Commit cd3210b

Browse files
committed
minor changes prediction intervals
1 parent 5cfb547 commit cd3210b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

vignettes/Chapter06.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -601,13 +601,13 @@ pointwise equal-tailed 95%-predictive interval
601601
```{r}
602602
par(mfrow=c(1,1))
603603
604-
matplot(x=t(matrix(1:nf,ncol=3, nrow=nf)),y=pred.int.sc,col="blue",type = "l",pch=16,lty=1,ylim=c(5,35), xlim=c(0,nf+1), xlab="Scenarios", ylab="Prediction",xaxt="n")
605-
points(x = 1:nf, y = pred.int.sc[2,], pch=16,col="blue")
604+
matplot(x=t(matrix(1:nf,ncol=3, nrow=nf)),y=pred.int.sc,col="blue",type = "l",pch=16,lty=1,ylim=c(8,32), xlim=c(0.5,nf+0.5), xlab="Scenarios", ylab="Predicted Open Box Office",xaxt="n")
605+
points(x = 1:nf, y = pred.int.sc[2,], pch=19,col="blue",cex=1.2)
606606
points(x = 1:nf, y = pred.mean.sc, pch=16,col="red")
607607
608608
matplot(x=t(matrix((1:nf)+0.2,ncol=3, nrow=nf)),y=pred.int.hs,col="blue",type = "l",pch=16,lty=1,add=TRUE)
609609
610-
points(x = (1:nf)+0.2, y = pred.int.hs[2,], pch=16,col="blue")
610+
points(x = (1:nf)+0.2, y = pred.int.hs[2,], pch=19,col="blue",cex=1.2)
611611
points(x = (1:nf)+0.2, y = pred.mean.hs, pch=16,col="red")
612612
613613
axis(1,at=1:nf,labels=c("A","B","C","D"))

0 commit comments

Comments
 (0)