print.multi_transiogram {spMC} | R Documentation |
Printing Theoretical Multidimensional Transiograms
Description
The function prints theoretical transition probabilities given by predict.multi_tpfit
.
Usage
## S3 method for class 'multi_transiogram'
print(x, ...)
Arguments
x |
an object of the class |
... |
further arguments passed to or from other methods. |
Value
Transition probabilities are printed on the screen or other output devices. No values are returned.
Author(s)
Luca Sartore drwolf85@gmail.com
See Also
Examples
data(ACM)
# Estimate the parameters of a
# multidimensional MC model
RTm <- multi_tpfit(ACM$MAT3, ACM[, 1:3])
# Generate the matrix of
# multidimensional lags
lags <- expand.grid(X=-1:1, Y=-1:1, Z=-1:1)
lags <- as.matrix(lags)
# Compute transition probabilities
# from the multidimensional MC model
TrPr <- predict(RTm, lags)
# Print results
print(TrPr)
[Package spMC version 0.3.15 Index]