print.gv {phylin} | R Documentation |
Prints details of a 'gv' object
Description
The function is used when a 'gv' object is called.
Usage
## S3 method for class 'gv'
print(x, ...)
Arguments
x |
'gv' object as given by 'gen.variogram'. |
... |
Further plotting arguments to be passed. |
Details
This prints the details of a 'gv' object including number of observations and other variogram creation parameters used. It will also display model details if a model was fitted to the empirical variogram.
Author(s)
Pedro Tarroso <ptarroso@cibio.up.pt>
See Also
Examples
data(vipers)
data(d.gen)
# create a distance matrix between samples
r.dist <- dist(vipers[,1:2])
# fit a variogram with defaults (shperical model) and estimation of range
gv <- gen.variogram(r.dist, d.gen, 0.25)
# print variogram details
gv
# add a model to variogram
gv <- gv.model(gv)
# print variogram with model details
gv
[Package phylin version 2.0.2 Index]