Skip to content

Commit

Permalink
filter out factset_entity_id that are NA and therefore not useful (
Browse files Browse the repository at this point in the history
  • Loading branch information
cjyetman authored Apr 17, 2024
1 parent 748d7c9 commit b32aab2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions R/prepare_abcd_flags_bonds.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ prepare_abcd_flags_bonds <-
)

financial_data %>%
dplyr::filter(!is.na(.data$factset_entity_id)) %>%
dplyr::left_join(factset_entity_id__ar_company_id, by = "factset_entity_id") %>%
dplyr::left_join(factset_entity_id__security_mapped_sector, by = "factset_entity_id") %>%
dplyr::left_join(ar_company_id__sectors_with_assets__debt, by = "ar_company_id") %>%
Expand Down

0 comments on commit b32aab2

Please sign in to comment.