Nothing
bit.spectrum <- function(fplist) {
if (class(fplist) != 'list') stop("Must provide a list of fingerprint objects")
if (any(unlist(lapply(fplist, class)) != 'fingerprint'))
stop("Must provide a list of fingerprint objects");
nbit <- length(fplist[[1]])
spec <- numeric(nbit)
for (i in 1:length(fplist)) {
bits <- fplist[[i]]@bits
spec[bits] <- spec[bits]+1
}
spec / length(fplist)
}
shannon <- function(fplist) {
if (class(fplist) != 'list') stop("Must provide a list of fingerprint objects")
if (any(unlist(lapply(fplist, class)) != 'fingerprint'))
stop("Must provide a list of fingerprint objects");
bs <- bit.spectrum(fplist)
bs <- bs[ bs != 0 ]
-1 * sum( bs * log2(bs) )
}
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.