methods.pp3
From spatstat v1.23-2
by Adrian Baddeley
Methods for three-dimensional point patterns
Methods for class "pp3"
.
Usage
## S3 method for class 'pp3':
print(x, ...)
## S3 method for class 'summary.pp3':
print(x, ...)
## S3 method for class 'pp3':
summary(object, ...)
## S3 method for class 'pp3':
unitname(x)
## S3 method for class 'pp3':
unitname(x) <- value
Arguments
- x,object
- Object of class
"pp3"
. - ...
- Ignored.
- value
- Name of the unit of length. See
unitname
.
Details
These are methods for the generic functions
print
, summary
,
unitname
and unitname<-
for the class "pp3"
of three-dimensional point patterns.
The print
and summary
methods print a description
of the point pattern.
The unitname
method extracts the name of the unit of
length in which the point coordinates are expressed.
The unitname<-
method assigns the name of the unit of length.
Value
- For
print.pp3
the value isNULL
. Forunitname.pp3
an object of class"units"
.
See Also
Examples
X <- pp3(runif(42),runif(42),runif(42), box3(c(0,1), unitname="mm"))
X
unitname(X)
unitname(X) <- c("foot", "feet")
summary(X)
Community examples
Looks like there are no examples yet.