Created
August 18, 2022 11:58
-
-
Save turbanisch/f126dfb7ac9b2d8bc49ef5a40f370da1 to your computer and use it in GitHub Desktop.
Herfindahl–Hirschman index
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
herfindahl <- function(x, shares_in_percent = FALSE, na.rm = FALSE) { | |
shares <- x / sum(x, na.rm = na.rm) | |
if (shares_in_percent) shares <- shares * 100 | |
sum(shares^2) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment