Skip to content

Commit

Permalink
show highest weight companies, not lowest in company bars (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjyetman committed Jun 12, 2024
1 parent 9a24a10 commit ce5accc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/prep_key_bars_company.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ prep_key_bars_company <-
mutate(asset_class = "Listed Equity") %>%
mutate_at("id", as.character) %>% # convert the col type to character to prevent errors in case empty df is binded by rows
group_by(.data$ald_sector, .data$technology) %>% # select at most 15 companies with the highest weigths per sector+technology
arrange(.data$port_weight, .by_group = TRUE) %>%
arrange(dplyr::desc(.data$port_weight), .by_group = TRUE) %>%
slice(1:15) %>%
filter(!is.null(.data$port_weight)) %>%
filter(!is.null(.data$plan_tech_share))
Expand Down Expand Up @@ -62,7 +62,7 @@ prep_key_bars_company <-
slice(1:15) %>%
group_by(.data$ald_sector) %>%
arrange(factor(.data$technology, levels = .env$all_tech_levels)) %>%
arrange(.data$port_weight, .by_group = TRUE) %>%
arrange(dplyr::desc(.data$port_weight), .by_group = TRUE) %>%
filter(!is.null(.data$port_weight)) %>%
filter(!is.null(.data$plan_tech_share))

Expand Down

0 comments on commit ce5accc

Please sign in to comment.