View source: R/wrangle_and_check.R
check_financial_data | R Documentation |
Applies sanity checks to financial data.
check_financial_data(financial_data, interactive_mode = FALSE)
financial_data |
A data set of |
interactive_mode |
If TRUE the, more verbose, interactive mode is used. |
Returns prewrangled financial_data
invisibly.
fin_data <- tibble::tibble(
company_name = c("Firm A", "Firm B"),
company_id = c(1, 2),
corporate_bond_ticker = c(NA, "TICK1"),
pd = c(0.01, 0.002),
net_profit_margin = c(0.423, 0.2),
debt_equity_ratio = c(0.1, 0.201),
volatility = c(0.130, 0.299)
)
check_financial_data(
financial_data = fin_data
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.