CTD (version 1.2)

stat.entropyFunction: Entropy of a bit-string

Description

The entropy of a bitstring (ex: 1010111000) is calculated.

Usage

stat.entropyFunction(bitString)

Value

e - a floating point percentage, between 0 and 1.

Arguments

bitString

- A vector of 0's and 1's.

Examples

Run this code
stat.entropyFunction(c(1,0,0,0,1,0,0,0,0,0,0,0,0))       # Output: 0.6193822
stat.entropyFunction(c(1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0)) # Output: 1
stat.entropyFunction(c(1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1)) # Output: 0

Run the code above in your browser using DataLab