sumppdist {ttbary} | R Documentation |
Compute Sum of q-th Powers of Distances Between a Point Pattern and a List of Point Patterns
Description
Determine the Euclidean distance based TT-p-distances (or RTT-p-distances) between
a single point pattern zeta
and each point pattern in a list pplist
. Then
compute the sum of -th powers of these distances.
Usage
sumppdist(
zeta,
pplist,
penalty = 1,
type = c("tt", "rtt", "TT", "RTT"),
p = 1,
q = 1
)
Arguments
zeta |
an object of class |
pplist |
an object of class |
penalty |
a positive number. The penalty for adding/deleting points. |
type |
either |
p |
a number |
q |
a number |
Details
The main purpose of this function is to evaluate the relative performance
of approximate -th order barycenters of point patterns. A true
-th order barycenter of the point patterns
with respect to the TT-p metric
minimizes
in .
The most common choices are p = q = 1
and p = q = 2
. Other
choices have not been tested.
Value
A nonnegative number, the q
-th order sum of the TT-p- or RTT-p-distances
between zeta
and each pattern in pplist
. This number has an attribute
distances
that contains the individual distances.
Author(s)
Dominic Schuhmacher schuhmacher@math.uni-goettingen.de
See Also
ppdist
for computation of TT-p- and RTT-p-metrics,
kmeansbary
for finding a local minimum of the above sum for p = q = 2
Examples
# See the examples for kmeansbary