Import the data from a version of Asset Resolution's proprietary Advanced Company Indicators XLSX into a tidy data frame.
Source:R/import_ar_advanced_company_indicators.R
import_ar_advanced_company_indicators.Rd
Import the data from a version of Asset Resolution's proprietary Advanced Company Indicators XLSX into a tidy data frame.
Usage
import_ar_advanced_company_indicators(
filepath,
drop_nas = TRUE,
fix_names = FALSE,
as_factor = TRUE
)
Arguments
- filepath
Path to the XLSX file.
- drop_nas
A logical indicating whether rows with an
NA
value after pivoting to long-format should be dropped (default isTRUE
).- fix_names
A logical indicating whether the column names should be fixed to snakecase format. (e.g.
Company Name
becomescompany_name
). By default, column names are not changed (i.e.FALSE
).- as_factor
A logical indicating whether the character columns should be converted to factors(default is
TRUE
).