Questions tagged as 'previous'

1
answer

Loop Error in R

I created this loop: library(forecast) a=1 b=60 while(b<=(NROW(tsarroz))){ janela=dput(tsarroz [a:b]) serie=ts(janela,freq=6) HW=HoltWinters(serie) prev=forecast(HW,6) result=data.frame(prev$mean) a=a+6 b=b+6 } It should cr...
asked by 10.10.2018 / 02:58
1
answer

Hide next and previous button in last and first content

I'm using a carousel with bootstrap, but I need the next button to add when the last item arrives and the previous button is hidden while in the first content. My code is not working, but I do not identify the problem, so I'll put it down. H...
asked by 13.06.2018 / 20:08