Nothing
# Argamon's Distance
# Function for computing Argamon's Linear Delta of a matrix of values,
# e.g. a table of word frequencies.
#
# Argument: a matrix or data table containing at least 2 rows and 2 cols
dist.argamon = function(x, scale = TRUE){
# test if the input dataset is acceptable
if(is.matrix(x) == FALSE & is.data.frame(x) == FALSE) {
stop("cannot apply a distance measure: wrong data format!")
}
# then, test whether the number of rows and cols is >1
if(length(x[1,]) < 2 | length(x[,1]) < 2) {
stop("at least 2 cols and 2 rows are needed to compute a distance!")
}
# the Delta measure relies on scaled data -- if you don't have your matrix
# scaled already (i.e. converted to z-scores), switch this option on
if(scale == TRUE) {
x = scale(x)
}
# time to apply the measure: compute Euclidean distance and divide by
# the number of features (words)
y = dist(x, method = "euclidean") / length(x[1,])
return(y)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.