| depreciation_spec | R Documentation |
Build a depreciation specification for a generic SPV tax engine
depreciation_spec(
acquisition_split,
capex_bucket = NULL,
start_rule = c("full_year", "next_year")
)
acquisition_split |
Data frame describing the acquisition-price split.
Required columns are |
capex_bucket |
Character scalar or |
start_rule |
Character scalar. Either |
A list of class cre_tax_depreciation_spec.
dep <- depreciation_spec(
acquisition_split = tibble::tribble(
~bucket, ~share, ~life_years, ~method, ~depreciable,
"land", 0.20, NA, "none", FALSE,
"building", 0.65, 30, "straight_line", TRUE,
"fitout", 0.15, 10, "straight_line", TRUE
),
capex_bucket = "fitout",
start_rule = "full_year"
)
dep$capex_bucket
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.