| lease_effective_rent | R Documentation |
Discounts a lease cash-flow vector and converts its present value into an equivalent level annuity. This is a compact helper for comparing lease structures with different concessions, rent steps, or timing conventions.
lease_effective_rent(
cashflows,
discount_rate,
area = NULL,
timing = c("advance", "arrears"),
perspective = c("landlord", "tenant")
)
cashflows |
Numeric vector of lease cash flows already expressed from the chosen perspective. |
discount_rate |
Numeric scalar in |
area |
Optional numeric scalar greater than 0. When supplied, the effective rent is also reported per unit of area. |
timing |
Character string. Either |
perspective |
Character string. Either |
A one-row tibble with present value, equivalent annuity, and effective
rent. When area is supplied, a per-area metric is also returned.
lease_effective_rent(
cashflows = c(0, 100, 100, 100, 100),
discount_rate = 0.08,
timing = "arrears",
perspective = "landlord"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.