CTD (version 0.99.8)

stat.entropyFunction: Entropy of a bit-string

Description

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

Usage

stat.entropyFunction(bitString)

Arguments

bitString

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

Value

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

Examples

Run this code
# NOT RUN {
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 DataCamp Workspace