Top 3 market shares data frame
Value
A data frame, which indicates an id or firm column and the top 3 market shares in decimal form.
See also
Other Market structure measures:
concstats_all_mstruct()
,
concstats_firm()
,
concstats_mstruct()
,
concstats_nrs_eq()
,
concstats_top()
,
concstats_top3()
,
concstats_top5()
,
concstats_top5_df()
,
concstats_top_df()
Examples
# some data
id <- c(1, 2, 3, 4, 5)
x <- c(0.2, 0.25, 0.4, 0.1, 0.05)
test_df <- data.frame(id, x)
concstats_top3_df(test_df, "x")
#> id x
#> 3 3 0.40
#> 2 2 0.25
#> 1 1 0.20