summary.Patterns: Return a summary of a Patternsobject
Description
Returns the below information about the object:
call of the function defining the object, the type of the pattern, parameters of the pattern,
study window, some sample points from the generated pattern, reference points (if any for the bivariate pattern),
and number of points for each class
Usage
# S3 method for Patterns
summary(object, ...)
Value
The call of the object of class "Patterns", the type of the pattern, parameters of the pattern,
study window, some sample points from the generated pattern, reference points (if any for the bivariate pattern),
and number of points for each class
Arguments
object
An object of class Patterns.
...
Additional parameters for summary.
See Also
print.Patterns, print.summary.Patterns, and plot.Patterns
nx<-20; #try also 100 and 1000ny<-3; #try also 1e<-.15;
Y<-cbind(runif(ny),runif(ny)) #with default bounding box (i.e., unit square)
Xdt<-rseg.disc(nx,Y,e)
Xdt
summary(Xdt)