View source: R/get-compustat.R
| sic_2digit | R Documentation |
Extracts the first two characters from SIC codes to create broader industry classifications.
sic_2digit(sic)
sic |
A numeric or character vector of SIC codes. |
SIC codes are hierarchical: the first two digits represent major industry groups (e.g., "54" = Retail-Food Stores), while the full 4-digit code provides more specific classifications (e.g., "5412" = Retail-Convenience Stores).
A character vector of 2-digit SIC codes.
# Convenience Stores (SIC 5412) -> Retail-Food Stores (54)
sic_2digit(5412)
# [1] "54"
sic_2digit(c(5412, 5400))
# [1] "54" "54"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.