R/burd_income.R

Defines functions burd_income

Documented in burd_income

#' Burdened Income
#'
#' Minimum annual income required for total housing costs to remain at or below 50% of household income:
#'
#' * To be deprecated. Use reqd_income() instead *
#'
#' @param monthlypayment Total Monthly payments towards home-ownership
#'
#' @return Minimum Annual Income required to keep \code{monthlypayment} at or below 50% of income
#' @export
#'
#' @examples
#'
#' burd_income(2000)
burd_income <- function(monthlypayment){
  output <- (monthlypayment*12)*100/50
  return(output)
}
aseemdeodhar/mortgager documentation built on Jan. 28, 2021, 12:53 p.m.