search for: acinva

Displaying 1 result from an estimated 1 matches for "acinva".

Did you mean: acinvb
2013 Feb 02
1
repeating autocovariate functions
...#contains xy coordinates xy <- cbind(Taranga$x, Taranga$y) acinvb <- autocov_dist(Taranga$burrows.pa, xy, nbs=1,zero.policy = TRUE, type="inverse") datfrm <- data.frame(autocov=acinvb, nbs=1) write.table(dfrm, file = 'results.csv',sep=",",row.names = FALSE) acinva <- autocov_dist(Taranga$burrows.pa, xy, nbs=100,zero.policy = TRUE, type="inverse") dfrm <-data.frame(autocov=acinva, nbs=100) names(datfrm) <- NULL write.table(datfrm, file = 'results.csv',sep=",",append=TRUE, row.names = FALSE, col.names=FALSE) I want to r...