Displaying 2 results from an estimated 2 matches for "naimi".
Did you mean:
naims
2000 Oct 29
3
TCP traffic
Hi all,
Does anybody know a package to control the bandwidth using "TCP Congestion
Control" method?
Best Regards
Hoomaan Naimi
Afranet Network Administrator
2018 Mar 06
1
raster time series statistics
It works if you use as.Date. But this defeates the purpose for the yearmon notion...
require(raster)
require(rts)
require(stringr)
r <- raster(ncol=100, nrow=100)
values(r) <- runif(ncell(r))
stack(r)->s
r->rs
for(i in 1:23){
rs[]<-r[]*i
addLayer(s,rs)->s
print(nlayers(s))
}
dt<-list(ID=seq(1:24),month=rep(formatC(1:12,flag=0,width=2),2), year=sort(rep(2016:2017,12)))