Last chance! 50% off unlimited learning
Sale ends in
unitname(x)
## S3 method for class 'ppp':
unitname(x)
## S3 method for class 'psp':
unitname(x)
## S3 method for class 'owin':
unitname(x)
## S3 method for class 'im':
unitname(x)
unitname(x) <- value
## S3 method for class 'ppp':
unitname(x) <- value
## S3 method for class 'psp':
unitname(x) <- value
## S3 method for class 'owin':
unitname(x) <- value
## S3 method for class 'im':
unitname(x) <- value
"ppp"
),
a line segment pattern (object of class "psp"
),
a window (object of class "owin"
) or
a pixel image (object of class "im"
unitname
is an object of class "units"
containing the name of the unit of length in x
. There are
methods for print
and summary
. unitname(x)
extracts this name,
and unitname(x) <- value
sets the name to value
.
A valid name is either
owin
,
ppp
X <- runifpoint(20)
# if the unit of length is 1 metre:
unitname(X) <- c("metre", "metres")
# if the unit of length is 6 inches:
unitname(X) <- list("inch", "inches", 6)
Run the code above in your browser using DataLab