Title: | An Extension of the Gap Statistic for Ordinal/Categorical Data |
---|---|
Description: | The gap statistic approach is extended to estimate the number of clusters for categorical response format data. This approach and accompanying software is designed to be used with the output of any clustering algorithm and with distances specifically designed for categorical (i.e. multiple choice) or ordinal survey response data. |
Authors: | Jeffrey Miecznikowski [aut], Eduardo Cortes [aut, cre] |
Maintainer: | Eduardo Cortes <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.1.0 |
Built: | 2024-10-26 03:31:13 UTC |
Source: | CRAN |
Bhattacharyya distance core function
BhattacharyyaDist(x, adj = 0.01)
BhattacharyyaDist(x, adj = 0.01)
x |
Matrix |
adj |
Small quantity added to avoid indefinite log(0) values. DEFAULT=0.001 |
Distance R object
Chi-square distance core function
ChisqDist(x)
ChisqDist(x)
x |
Matrix |
Distance R object
Discrete application of clusGap Based on the implementation of the function found in the 'cluster' R package
clusGapDiscr( x, FUNcluster, K.max, B = nrow(x), value.range = "DS", verbose = interactive(), distName = "hamming", useLog = TRUE, ... )
clusGapDiscr( x, FUNcluster, K.max, B = nrow(x), value.range = "DS", verbose = interactive(), distName = "hamming", useLog = TRUE, ... )
x |
Categorical/number matrix |
FUNcluster |
a function that accepts as first argument a matrix like 'x'; second argument specifies number of 'k' (k=>2) clusters This function returns a list with a component named 'cluster', a vector of length 'n=nrow(x)' of integers from '1:k' indicating observation cluster assignment. |
K.max |
Integer. Maximum number of clusters 'k' to consider |
B |
Number of bootstrap samples. By default B = nrow(x). |
value.range |
String, character vector or a list of character vector with the length matching the number of columns (nQ) of the array. A vector with all categories to consider when bootstrapping the null distribution sample (KS: Known Support option). By DEFAULT vals=NULL, meaning unique range of categories found in the data will be used when drawing the null (DS: Data Support option). If a character vector of categories is provided, these values would be used for the null distribution drawing across the array. If a list with category character vectors is provided, it has to have the same number of columns as the input array. The order of list element corresponds to the array's columns. |
verbose |
Integer or logical. Determines whether progress output should printed while running. By DEFAULT one bit is printed per bootstrap sample. |
distName |
String. Name of categorical distance to apply. Available distances: 'bhattacharyya', 'chisquare', 'cramerV', 'hamming' and 'hellinger'. |
useLog |
Logical. Use log function after estimating 'W.k'. Following the original formulation 'useLog=TRUE' by default. |
... |
optionally further arguments for 'FUNcluster()' |
a matrix with K.max rows and 4 columns, named "logW", "E.logW", "gap", and "SE.sim", where gap = E.logW - logW, and SE.sim correspond to the standard error of 'gap'.
Concussion Data
concussion
concussion
## 'data.frame' A data frame with 109 rows and 21 columns. Severity rating recorded as categorical responses from c1 (none) to c7 (severe).
Headache
Nausea
Balance problems
Dizziness
Fatigue
Sleeping more than usual
Drowsiness
Sensibility to light
Sensibility to noice
Irritability
Sadness
Nervousness/Anxiousness
Feeling more emotional
Feeling slowed down
Feeling mentally foggy
Difficulty concentrating
Difficulty remembering
Visual problems
Confusion
Feeling clumsy
Answer slowlier
Cramer's V modified pairwise vector function based on the function found in lsr package This is simple wrapper of the usual chisq.test fun This is actually an adjusted version of the pi = sqrt(Chisq2/N) guaranteeing that values are within 0 (no association) and 1 (association)
cramersVmod(x, y)
cramersVmod(x, y)
x |
vector of size n |
y |
vector of size n |
numerical value
Cramer's V core function
CramerV(X)
CramerV(X)
X |
matrix |
Distance matrix
Bhattacharyya's wrapper Function
dissbhattacharyya(X, na.rm = TRUE)
dissbhattacharyya(X, na.rm = TRUE)
X |
Matrix |
na.rm |
Remove NAs default=TRUE |
Distance R object
Chi-square distance wrapper function
disschisquare(X, na.rm = TRUE)
disschisquare(X, na.rm = TRUE)
X |
Matrix |
na.rm |
logical |
Distance R object
Cramer's V distance wrapper function
disscramerv(X, na.rm = TRUE)
disscramerv(X, na.rm = TRUE)
X |
Matrix |
na.rm |
logical |
Distance R object
Hamming distance wrapper function Function based on cultevo's package implementation
disshamming(X, na.rm = TRUE)
disshamming(X, na.rm = TRUE)
X |
matrix |
na.rm |
logical |
Distance matrix
Hellinger's distance wrapper Function
disshellinger(X, na.rm = TRUE)
disshellinger(X, na.rm = TRUE)
X |
Matrix |
na.rm |
logical |
Distance R object
sample-to-sample heatmap clustering samples according to a given categorical distance Exploratory tool that helps to visualize/cluster blocks of observations across columns ordered according to given categorical distance. The final output is a clustered distance matrix. This plot is aimed to guide the 'DiscreteClusGap' user to give an idea which type of categorical distance would accommodate better to the inputted data. 'sample2sampleHeat' is based on the 'pheatmap' function from the 'pheatmap' R package. Thus, any parameter found in pheatmap can be specified to 'sample2sampleHeat'.
distanceHeat( x, distName, clustering_method = "complete", border_color = NA, ... )
distanceHeat( x, distName, clustering_method = "complete", border_color = NA, ... )
x |
matrix object or data.frame |
distName |
Name of categorical distance to apply. |
clustering_method |
string; clustering method used by pheatmap |
border_color |
string; color cell borders. By default, border_color = NA, where no border colors are shown. |
... |
other valid arguments in pheatmap function Available distances: 'bhattacharyya', 'chisquare', 'cramerV', 'hamming' and 'hellinger'. |
clustered heatmap
Function invoking discrete distance functions
distancematrix(X, d, na.rm = TRUE)
distancematrix(X, d, na.rm = TRUE)
X |
Matrix where rows are the observations and columns are discrete features |
d |
Name of distance. Distances available: bhattacharyya, chisquare, cramerV, hamming and hellinger |
na.rm |
Remove NAs default=TRUE |
R distance object
X = rbind(matrix(paste0("a", rpois(7*5, 1)), nrow=5), matrix(paste0("a", rpois(7*5, 3)), nrow=5)) distancematrix(X = X, d = "hellinger")
X = rbind(matrix(paste0("a", rpois(7*5, 1)), nrow=5), matrix(paste0("a", rpois(7*5, 3)), nrow=5)) distancematrix(X = X, d = "hellinger")
Criteria to determine number of clusters k
findK(cG_obj, meth = "Tibs2001SEmax")
findK(cG_obj, meth = "Tibs2001SEmax")
cG_obj |
Output object obtained from 'clusGapDiscr' |
meth |
Method to use to determine optimal k number of clusters. |
A numerical value from 1 to K.max, contained in the input 'cG_obj' object.
Hellinger distance core function
HellingerDist(x)
HellingerDist(x)
x |
matrix |
Distance matrix
Summary Heatmap for categorical/Likert data Heatmap representation summarizing categorical/likert data. Modified version of 'likert.heat.plot' from 'likert' package. Does not allow different categorical ranges across questions. The function outputs a ggplot object where additional layers can be added for customization purposes. The output plot preserves the question order given by columns of 'x'.
likert.heat.plot2( x, allLevels, low.color = "white", high.color = "blue", text.color = "black", text.size = 4, textLen = 50 )
likert.heat.plot2( x, allLevels, low.color = "white", high.color = "blue", text.color = "black", text.size = 4, textLen = 50 )
x |
matrix object or data.frame with categorical data. Columns are questions and rows are observations. |
allLevels |
vector with all categorical (ordered) levels. |
low.color |
string; name of color assigned to the first level found in 'allLevels'. |
high.color |
string; name of color assigned to the last level found in 'allLevels'. |
text.color |
string; text color of numbers within cells. |
text.size |
string; text size for numbers within cells. |
textLen |
string; maximum length of text-length for question labels (column names) |
ggplot object.
mass data
mass
mass
## 'data.frame' Data extracted from the 'likert' R package. Results from an administration of the Math Anxiety Scale Survey. First Column records student gender either Female or Male. All statement answers have 5 possible ordinal categorical items: Strongly Disagree, Disagree, Neutral, Agree, Strongly Agree.
Gender
Math interesting
Uptight with math tests
Use math in the future
Mind goes blank in math tests
Math relates to own life
Worry about ability math problem solving
Sinking feeling doing math problems
Math is challenging
Nervousness with math
Take more math classes
Uneasy feeling with math
Favorite subject is math
Enjoy learning math
Confused with math
<https://rdrr.io/cran/likert/man/mass.html>
Heatmap assuming a given a distance function and a known number of clusters. Function to display a categorical data matrix given a user defined number of clusters 'nCl', a categorical distance 'distName' and a predefined clustering method 'FUNcluster'. The output displays a heatmap separating and color-labelling resulting clusters vertically in the rows and allowing unsupervised clustering on questions in the columns. Each cell is colored according to the categorical values provided or found in the data. The clustergram is based on the 'pheatmap' function from the pheatmap R package. Thus, any parameter found in pheatmap can be specified to 'clusGapDiscrHeat'. This function can be used to examine number of clusters before running 'clusGapDiscrHeat' but also after number of clusters is determined.
ResHeatmap( x, nCl, distName, catVals, FUNcluster = cluster::pam, out = "heatmap", clusterNames = NULL, prefObs = NULL, rowNames = rownames(x), filename = NULL, outDir = NULL, height = 10, width = 6 )
ResHeatmap( x, nCl, distName, catVals, FUNcluster = cluster::pam, out = "heatmap", clusterNames = NULL, prefObs = NULL, rowNames = rownames(x), filename = NULL, outDir = NULL, height = 10, width = 6 )
x |
matrix object or data.frame |
nCl |
number of clusters to plot; if 'nCl' is a permutation vector of the first lN integers will rearrange clusters according to the original given ordering. |
distName |
Name of categorical distance to apply. Available distances: 'bhattacharyya', 'chisquare', 'cramerV', 'hamming' and 'hellinger'. |
catVals |
character string vector with (ordered) categorical values |
FUNcluster |
a function that accepts as first argument a matrix like 'x'; second argument specifies number of 'k' (k=>2) clusters This function returns a list with a component named 'cluster', a vector of length 'n=nrow(x)' of integers from '1:k' indicating observation cluster assignment. |
out |
Specifies the desired output between "heatmap" (default; produce a heatmap), "clusters" (return a 'data.frame' with clustering assignments) or "clustersReord" (return a 'data.frame' with reorganized clusters) |
clusterNames |
Either ‘null' or ’renumber'. When ‘nCl' is a numerical vector, the cluster ordering is rearranged. 'NULL' leaves cluster names as their original cluster assignment. ’renumber' respects the rearrangements but relabels the cluster numbers from top to bottom in ascending order. |
prefObs |
character string vector of length 1 with a prefix for the observations, in case they come unlabelled or the user wants to anomymize sample IDs. |
rowNames |
character vector with names of rows according to 'x'. By default, 'rownames(x)' will be printed in the plot. 'rowNames=NULL' prevents from showing names. 'prefObs' option takes precedence if is different to 'NULL'. |
filename |
character string with name of file output |
outDir |
character string with the directory path to save output file |
height |
numeric height of output plot in inches |
width |
numeric width of output plot in inches |
png file or ComplexHeatmap object
Simulate Data
SimData(N, nQ, pi)
SimData(N, nQ, pi)
N |
Integer. Number of observations. |
nQ |
Integer. Number of questions. |
pi |
Numeric vector. Vector of probabilities adding up to 1; it is recommended that names of elements are character strings. Alternatively, pi can be list of vectors as previously described with length equal to 'nQ'. Notice that the list elements need not have same vector names. The order of pi vectors in the list will be reflected in the resulting simulated matrix. This alternative ideally assumes that questions are independently distributed. |
N x nQ matrix with simulated categories distributed according to vector pi
Pix <- setNames(c(0.1, 0.2, 0.3, 0.4, 0), paste0('a', 1:5)) X <- SimData(N=10, nQ=5, Pix) head(X) Piy <- setNames(c(0.3, 0.2, 0.4, 0, 0.1), paste0('a', 1:5)) Y <- SimData(N=10, nQ=3, Piy) head(Y) PiZ <- list(x1 = Pix, x2 = Pix, y1 = Piy, y2 = Piy) Z <- SimData(N=10, nQ=length(PiZ), PiZ)
Pix <- setNames(c(0.1, 0.2, 0.3, 0.4, 0), paste0('a', 1:5)) X <- SimData(N=10, nQ=5, Pix) head(X) Piy <- setNames(c(0.3, 0.2, 0.4, 0, 0.1), paste0('a', 1:5)) Y <- SimData(N=10, nQ=3, Piy) head(Y) PiZ <- list(x1 = Pix, x2 = Pix, y1 = Piy, y2 = Piy) Z <- SimData(N=10, nQ=length(PiZ), PiZ)