1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
\name{methods.lpp}
\alias{methods.lpp} %DoNotExport
\Rdversion{1.1}
\alias{as.ppp.lpp}
\alias{as.psp.lpp}
\alias{marks<-.lpp}
\alias{nsegments.lpp}
\alias{print.lpp}
\alias{print.summary.lpp}
\alias{summary.lpp}
\alias{unitname.lpp}
\alias{unitname<-.lpp}
\alias{unmark.lpp}
\title{
Methods for Point Patterns on a Linear Network
}
\description{
These are methods specifically for the class \code{"lpp"} of point patterns on
linear networks.
}
\usage{
\method{as.ppp}{lpp}(X, ..., fatal=TRUE)
\method{as.psp}{lpp}(x, ..., fatal=TRUE)
\method{marks}{lpp}(x, ...) <- value
\method{nsegments}{lpp}(x)
\method{print}{lpp}(x, ...)
\method{print}{summary.lpp}(x, ...)
\method{summary}{lpp}(object, ...)
\method{unitname}{lpp}(x)
\method{unitname}{lpp}(x) <- value
\method{unmark}{lpp}(X)
}
\arguments{
\item{x,X,object}{
An object of class \code{"lpp"} representing a point pattern
on a linear network.
}
\item{\dots}{
Arguments passed to other methods.
}
\item{value}{
Replacement value for the \code{marks} or \code{unitname}
of \code{x}. See Details.
}
\item{fatal}{
Logical value indicating whether data in the wrong format
should lead to an error (\code{fatal=TRUE}) or a warning
(\code{fatal=FALSE}).
}
}
\details{
These are methods for the generic functions
\code{\link[spatstat.geom]{as.ppp}},
\code{\link[spatstat.geom]{as.psp}},
\code{\link[spatstat.geom]{marks<-}},
\code{\link[spatstat.geom]{nsegments}},
\code{\link[base]{print}},
\code{\link[base]{summary}},
\code{\link[spatstat.geom]{unitname}},
\code{\link[spatstat.geom]{unitname<-}} and
\code{\link[spatstat.geom]{unmark}}
for objects of the class \code{"lpp"}.
For \code{"marks<-.lpp"} the replacement \code{value}
should be either \code{NULL}, or a vector of length equal
to the number of points in \code{x},
or a data frame with one row for each point in \code{x}.
For \code{"unitname<-.lpp"} the replacement \code{value}
should be a valid name for the unit of length, as
described in \code{\link[spatstat.geom]{unitname}}.
}
\section{Other methods}{
An object of class \code{"lpp"} also inherits the class
\code{"ppx"} for which many other methods are available.
See \code{\link[spatstat.geom:methods.ppx]{methods.ppx}}.
}
\value{
See the documentation on the corresponding generic function.
}
\author{
\adrian
}
\seealso{
\code{\link{lpp}},
\code{\link{intensity.lpp}},
\code{\link[spatstat.geom:methods.ppx]{methods.ppx}}
}
\examples{
X <- runiflpp(10, simplenet)
unitname(X) <- c("furlong", "furlongs")
X
summary(X)
summary(chicago)
nsegments(X)
Y <- as.ppp(X)
}
\keyword{spatial}
\keyword{methods}
\concept{Linear network}
|