4 Matching Annotations
  1. Nov 2022
    1. First, Shannon came up with a formula for the minimum number of bits per second to represent the information, a number he called its entropy rate, H. This number quantifies the uncertainty involved in determining which message the source will generate. The lower the entropy rate, the less the uncertainty, and thus the easier it is to compress the message into something shorter.

      This also applies to human communication in the sense that the lower the entropy rate, which in this case means the uncertainty on the recipient side on the message that will be sent, the easier it is to compress the message. This could be interpreted in human communication to mean that the certainty from the message could come from the abundance or lack thereof of context, signals that could provide clues as to what the message might be. Considering this context, the message might be compressed into very small messages. A good example of this is air traffic controllers and the military.

  2. Jul 2020
  3. Jun 2020
    1. Good games pull you in and carry you through a journey that remains engaging, using an evolving balance of challenges and a stream of well crafted, actionable feedback.

      Good game design

  4. May 2020
    1. ggplot(data = diamonds) + geom_pointrange( mapping = aes(x = cut, y = depth), stat = "summary", fun.ymin = min, fun.ymax = max, fun.y = median )

      Could not generate the same stat_summary( ) plot with that code, did a little research and stack overflow suggested two solutions: use geom_line( )

      ggplot(data = diamonds, mapping = aes(x = cut, y = depth)) + geom_line() + stat_summary(fun.y = "median", geom = "point", size = 3)

      or, reduce the amount of data by grouping it

      data = diamonds %>% group_by(cut) %>% summarise(min = min(depth), max = max(depth), median = median(depth))

      ggplot(data, aes(x = cut, y = median, ymin = min, ymax = max)) + geom_linerange() + geom_pointrange()

      Source: https://stackoverflow.com/questions/41850568/r-ggplot2-pointrange-example