This is a method for the generic function intensity
.
It computes the empirical intensity of a point pattern
(object of class "ppp"
),
i.e. the average density of points per unit area.
If the point pattern is multitype, the intensities of the
different types are computed separately.
Note that the intensity will be computed as the number of points
per square unit, based on the unit of length for X
,
given by unitname(X)
. If the unit of length is a strange multiple
of a standard unit, like 5.7 metres
, then it can be converted
to the standard unit using rescale
. See the Examples.
If weights
are given, then the intensity is
computed as the total weight per square unit.
The argument weights
should be a numeric vector
of weights for each point of X
(weights may be negative or
zero).
Alternatively weights
can be an expression
which will be evaluated for the dataset to yield a vector of weights.
The expression may involve the Cartesian coordinates \(x,y\) of the
points, and the marks of the points, if any. Variable names
permitted in the expression include x
and y
,
the name marks
if X
has a single column of marks,
the names of any columns of marks if X
has a data frame of
marks, and the names of constants or functions that exist
in the global environment. See the Examples.