R/FuzzyPoverty_class.R

Defines functions FuzzySupplementary FuzzyPoverty

Documented in FuzzyPoverty FuzzySupplementary

#' s3 class fuzzy poverty
#' @export
#'
#' @param x an object
#' @return an object of class FuzzyPoverty
#'
FuzzyPoverty <- function(x){
  class(x) <- "FuzzyMonetary"
  return(x)
}

#' s3 class fuzzy poverty
#'
#' @param x an object
#' @return an object of class FuzzyPoverty
#'
FuzzySupplementary <- function(x){
  class(x) <- "FuzzySupplementary"
  return(x)
}

Try the FuzzyPovertyR package in your browser

Any scripts or data that you put into this service are public.

FuzzyPovertyR documentation built on Oct. 3, 2024, 5:06 p.m.