find_optimal {optimus} | R Documentation |
Find an optimal classification among competing clustering solutions
Description
find_optimal
takes a clustering solution, or a set of related clustering solutions, fits models based on the underlying multivariate data, and calculates the sum-of-AIC value for the solution/s. The smallest sum-of-AIC value is the optimal solution.
Usage
find_optimal(data, clustering, family, K = 1, cutree = NULL,
cutreeLevels = 2:10, cutreeOveride = FALSE)
Arguments
data |
a data frame (or object that can be coerced by |
clustering |
either an object on which |
family |
a character string denoting the error distribution to be used for model fitting. The options are similar to those in |
K |
number of trials in binomial regression. By default, K=1 for presence-absence data (with cloglog link). |
cutree |
logical, but default is |
cutreeLevels |
a numerical vector specifying the different partitioning levels to calculate sum-of-AIC for (that is the values of |
cutreeOveride |
logical. Ignored if |
Details
find_optimal
is built on the premise that a good clustering solution (i.e. a classification) should provide information about the composition and abundance of the multivariate data it is classifying. A natural way to formalize this is with a predictive model, where group membership (clusters) is the predictor, and the multivariate data (site by variables matrix) is the response. find_optimal
fits linear models to each variable, and calculates the sum of the AIC value (sum-of-AIC) for each model. sum-of-AIC is motivated as an estimate of Kullback-Leibler distance, so we posit that the clustering solution that minimises the sum-of-AIC value is the best. So, in context of optimal partitioning, find_optimal
can be used to automatically and objectively decide which clustering solution is the best among competing solutions. Lyons et al. (2016) provides background, a detailed description of the methodology, and application of sum-of-AIC on both real and simulated ecological multivariate abundance data.
At present, find_optimal
supports the following error distributions for model fitting:
Gaussian (LM)
Negative Binomial (GLM with log link)
Poisson (GLM with log link)
Binomial (GLM with cloglog link for binary data, logit link otherwise)
Ordinal (Proportional odds model with logit link)
Gaussian LMs should be used for 'normal' data. Negative Binomial and Poisson GLMs should be used for count data. Binomial GLMs should be used for binary and presence/absence data (when K=1
), or trials data (e.g. frequency scores). If Binomial regression is being used with K>1
, then data
should be numerical values between 0 and 1, interpreted as the proportion of successful cases, where the total number of cases is given by K
(see Details in family
). Ordinal regression should be used for ordinal data, for example, cover-abundance scores. For ordinal regression, data should be supplied as either 1) factors, with the appropriate ordinal level order specified (see levels
) or 2) numeric, which will be coerced into a factor with levels ordered in numerical order (e.g. cover-abundance/numeric response scores). LMs fit via manylm
; GLMs fit via manyglm
; proportional odds model fit via clm
.
Value
a data frame containing the sum-of-AIC value for each clustering solution, along with the number of clusters the solution had. The object is of class aicsums
.
Attributes for the data frame are:
family
which error distribution was used for modelling, see Arguments
K
number of cases for Binomial regression, see Arguments
cutree
whether
cutree
was used, see ArgumentscutreeLevels
number of partitioning levels specified, see Arguments
Author(s)
Mitchell Lyons
References
Lyons et al. 2016. Model-based assessment of ecological community classifications. Journal of Vegetation Science, 27 (4): 704–715.
See Also
plot.aicsums
, get_characteristic
, merge_clusters
, S3 for residual plots (at some stage)
Examples
## Prep the 'swamps' data
## ======================
data(swamps) # see ?swamps
swamps <- swamps[,-1]
## Assess clustering solutions using cutree() method
## =================================================
## perhaps not the best clustering option, but this is base R
swamps_hclust <- hclust(d = dist(x = log1p(swamps), method = "canberra"),
method = "complete")
## calculate sum-of-AIC values for 10:25 clusters, using the hclust() output
swamps_hclust_aics <- find_optimal(data = swamps, clustering = swamps_hclust,
family = "poisson", cutreeLevels = 10:25)
## Looks like ~20 clusters is where predictive performance levels off
## Note here that the data passed to find_optimal() was actually NOT the
## data used for clustering (transform/distance), rather it was the
## original abundance (response) data of interest
## plot - lower sum-of-AIC valuea indicate 'better' clustering
plot(swamps_hclust_aics)
## Not run:
## Assess clustering solutions by supplying a list of solutions
## ============================================================
## again, we probably wouldn't do this, but for illustrative purposes
## note that we are generating a list of solutions this time
swamps_kmeans <- lapply(X = 2:40,
FUN = function(x, data) {stats::kmeans(x = data, centers = x)$cluster},
data = swamps)
## calculate sum-of-AIC values for the list of clustering solutions
swamps_kmeans_aics <- find_optimal(data = swamps, clustering = swamps_kmeans,
family = "poisson") # note cutreeLevels= argument is not needed
plot(swamps_kmeans_aics)
## End(Not run)
## See vignette for more explanation than this example
## ============================================================