Closed malcook closed 6 years ago
The extractMoran Documentation reads:
Value A length nlag named vector
But in fact the length of the value is nlag * length(props).
That said, I wish there was a version of extractMoran that did NOT do this at before returning a value:
Moran = unlist(Moran) names(Moran) = as.vector(t(outer(props, paste(".lag", 1:nlag, sep = ""), paste, sep = "")))
But instead simply did
names(Moran)<-props
As written, it makes it difficult to recover the values for each property for which the correlation is computed.
The extractMoran Documentation reads:
But in fact the length of the value is nlag * length(props).
That said, I wish there was a version of extractMoran that did NOT do this at before returning a value:
But instead simply did
As written, it makes it difficult to recover the values for each property for which the correlation is computed.