Tagged Questions
10
votes
11answers
4k views
What is the computer science definition of entropy?
I've recently started a course on data compression at my university. However, I find the use of the term "entropy" as it applies to computer science rather ambiguous. As far as I can tell, it roughly ...
8
votes
4answers
408 views
How does the entropy of a string of English text signify low quality?
Jeff Atwood recently tweeted a link to a CodeReview post where he wanted to know if the community could improve his "calculating entropy of a string" code snippet. He explained, "We're calculating ...
5
votes
4answers
2k views
How do I compute the approximate entropy of a bit string?
Is there a standard way to do this?
Googling -- "approximate entropy" bits -- uncovers multiple academic papers but I'd like to just find a chunk of pseudocode defining the approximate entropy for a ...
5
votes
4answers
2k views
Shannon's entropy formula. Help my confusion
my understanding of the entropy formula is that it's used to compute the minimum number of bits required to represent some data. It's usually worded differently when defined, but the previous ...
2
votes
1answer
141 views
what part of numbers has more entropy?
Given the sequence pf numbers N1, N2, N3... from some source, not a PRNG but say sensor or logging data of some kind, is it safe to assume that processing it like this
Nn / B = Qn Rem Mn
...
1
vote
1answer
543 views
Mutual Information / Entropy Calculation Help
Hoping someone can give me some pointers with this entropy problem.
Say X is chosen randomly from the uniform integer distribution 0-32 (inclusive).
I calculate the entropy, H(X) = 32 bits, as each ...
0
votes
0answers
27 views
Calculating mutual information between two columns
I need to evaluate connections between datasets. For example, assume the following dataset,
+--------------------+
| Last name | Tel no |
+------------------- +
| Banks | XXX |
| Banks | ...
0
votes
2answers
127 views
Computation of Mutual Information
Suppose M is a set of objects m each having attributes X and Y. Now if X and Y can have only one value for given m (i.e. X,Y are random variables with P(X=x_i|M=m_i), P(Y=y_i|M=m_i)), it's possible to ...
-1
votes
2answers
139 views
How do I calculate the entropy of a graph?
I have a set of randomly generated formal graphs, and I would like to calculate the entropy of each one. The same question in different words: I have several networks, and want to calculate the ...