R/super_guarantee.R

Defines functions super_guarantee

Documented in super_guarantee

#' The rate of the superannuation guarantee
#' @param fy_year The financial years for which the super guarantee is desired.
#' @return The super guarantee for that year. See Details.
#' @details Currently returns 9.5\% for all years.
#' @export

super_guarantee <- function(fy_year){
  0.095
}
HughParsonage/CRIMpp documentation built on May 7, 2019, 4:03 a.m.