moSL {Riemann} | R Documentation |
Finite Mixture of Spherical Laplace Distributions
Description
For observations on a
sphere in
,
a finite mixture model is fitted whose components are spherical Laplace distributions via the following model
with parameters 's for component weights,
's for component locations, and
's for component scales.
Usage
moSL(
data,
k = 2,
same.sigma = FALSE,
variants = c("soft", "hard", "stochastic"),
...
)
## S3 method for class 'moSL'
loglkd(object, newdata)
## S3 method for class 'moSL'
label(object, newdata)
## S3 method for class 'moSL'
density(object, newdata)
Arguments
data |
data vectors in form of either an |
k |
the number of clusters (default: 2). |
same.sigma |
a logical; |
variants |
type of the class assignment methods, one of |
... |
extra parameters including
|
object |
a fitted |
newdata |
data vectors in form of either an |
Value
a named list of S3 class riemmix
containing
- cluster
a length-
vector of class labels (from
).
- loglkd
log likelihood of the fitted model.
- criteria
a vector of information criteria.
- parameters
a list containing
proportion
,location
, andscale
. See the section for more details.- membership
an
row-stochastic matrix of membership.
Parameters of the fitted model
A fitted model is characterized by three parameters. For -mixture model on a
sphere in
, (1)
proportion
is a length- vector of component weight
that sums to 1, (2)
location
is an matrix whose rows are per-cluster locations, and
(3)
concentration
is a length- vector of scale parameters for each component.
Note on S3 methods
There are three S3 methods; loglkd
, label
, and density
. Given a random sample of
size as
newdata
, (1) loglkd
returns a scalar value of the computed log-likelihood,
(2) label
returns a length- vector of cluster assignments, and (3)
density
evaluates densities of every observation according ot the model fit.
Examples
# ---------------------------------------------------- #
# FITTING THE MODEL
# ---------------------------------------------------- #
# Load the 'city' data and wrap as 'riemobj'
data(cities)
locations = cities$cartesian
embed2 = array(0,c(60,2))
for (i in 1:60){
embed2[i,] = sphere.xyz2geo(locations[i,])
}
# Fit the model with different numbers of clusters
k2 = moSL(locations, k=2)
k3 = moSL(locations, k=3)
k4 = moSL(locations, k=4)
# Visualize
opar <- par(no.readonly=TRUE)
par(mfrow=c(1,3))
plot(embed2, col=k2$cluster, pch=19, main="K=2")
plot(embed2, col=k3$cluster, pch=19, main="K=3")
plot(embed2, col=k4$cluster, pch=19, main="K=4")
par(opar)
# ---------------------------------------------------- #
# USE S3 METHODS
# ---------------------------------------------------- #
# Use the same 'locations' data as new data
# (1) log-likelihood
newloglkd = round(loglkd(k3, locations), 5)
fitloglkd = round(k3$loglkd, 5)
print(paste0("Log-likelihood for K=3 fitted : ", fitloglkd))
print(paste0("Log-likelihood for K=3 predicted : ", newloglkd))
# (2) label
newlabel = label(k3, locations)
# (3) density
newdensity = density(k3, locations)