concstats_sten {concstats} | R Documentation |
Stenbacka Index
Description
Stenbacka Index
Usage
concstats_sten(x, na.rm = TRUE)
Arguments
x |
A non-negative numeric vector. |
na.rm |
A logical vector that indicates whether |
Details
concstats_sten
calculates the Stenbacka index,
which indicates the market share of a dominant position.
Value
A single numeric measure in decimal form.
References
Melnik, A., Shy, Oz, Stenbacka, R., (2008), "Assessing market dominance", Journal of Economic Behavior and Organization, 68: pp. 63-72.
Examples
# a vector of market shares
x <- c(0.35, 0.4, 0.05, 0.1, 0.06, 0.04)
concstats_sten(x)
# a vector with NA values
x <- c(0.4, 0.2, 0.25, 0.1, 0.05, NA)
concstats_sten(x, na.rm = FALSE)
[Package concstats version 0.1.6 Index]