vreq_classic_methods {tsvr} | R Documentation |
Basic methods for the vreq_classic
class
Description
Set, get, summary, and print methods for the vreq_classic
class.
Usage
## S3 method for class 'vreq_classic'
summary(object, ...)
## S3 method for class 'vreq_classic'
print(x, ...)
## S3 method for class 'vreq_classic'
set_com(obj, newval)
## S3 method for class 'vreq_classic'
set_comnull(obj, newval)
## S3 method for class 'vreq_classic'
set_vr(obj, newval)
## S3 method for class 'vreq_classic'
get_com(obj)
## S3 method for class 'vreq_classic'
get_comnull(obj)
## S3 method for class 'vreq_classic'
get_vr(obj)
Arguments
object , x , obj |
An object of class |
... |
Not currently used. Included for argument consistency with existing generics. |
newval |
A new value, for the |
Value
summary.vreq_classic
produces a summary of a vreq_classic
object.
A print.vreq_classic
method is also available. For vreq_classic
objects,
set_*
and get_*
methods are available for all slots (see
the documentation for vreq_classic
for a list). The set_*
methods
just throw an error, to prevent breaking the consistency between the
slots of a vreq_classic
object.
Author(s)
Daniel Reuman, reuman@ku.edu
References
Peterson (1975) Stability of species and of community for the benthos of two lagoons. Ecology 56, 958-965.
See Also
Examples
X<-matrix(runif(10*100),10,100)
res<-vreq_classic(X)
print(res)
summary(res)
[Package tsvr version 1.0.2 Index]