R/svyrich.R

Defines functions svyrich.svyrep.design svyrich.survey.design svyrich

Documented in svyrich svyrich.survey.design svyrich.svyrep.design

#' Richness measures
#'
#' Estimate Peichl, Schaefer and Scheicher (2010) richness measures.
#'
#' @param formula a formula specifying the income variable
#' @param design a design object of class \code{survey.design} or class \code{svyrep.design} from the \code{survey} library.
#' @param type_measure A string "Cha", "FGTT1" or "FGTT2" defining the richness measure.
#' @param type_thresh type of richness threshold. If "abs" the threshold is fixed and given the value of abs_thresh; if "relq" it is given by \code{percent} times the quantile; if "relm" it is \code{percent} times the mean.
#' @param abs_thresh richness threshold value if type_thresh is "abs"
#' @param g Richness preference parameter.
#' @param percent the multiple of the quantile or mean used in the richness threshold definition. Defaults to \code{percent = 1.5}; i.e., 1.5 times the quantile or mean.
#' @param quantiles the quantile used used in the richness threshold definition. Defaults to \code{quantiles = .5}, the median.
#' @param thresh return the richness threshold value
#' @param na.rm Should cases with missing values be dropped?
#' @param deff Return the design effect (see \code{survey::svymean})
#' @param linearized Should a matrix of linearized variables be returned
#' @param return.replicates Return the replicate estimates?
#' @param ... passed to \code{svyarpt}
#'
#' @details you must run the \code{convey_prep} function on your survey design object immediately after creating it with the \code{svydesign} or \code{svrepdesign} function.
#'
#' @return Object of class "\code{cvystat}", which are vectors with a "\code{var}" attribute giving the variance and a "\code{statistic}" attribute giving the name of the statistic.
#'
#' @author Guilherme Jacob, Djalma Pessoa and Anthony Damico
#'
#' @seealso \code{\link{svyfgt}}
#'
#' @references Michal Brzezinski (2014). Statistical Inference for Richness Measures. \emph{Applied Economics},
#' Vol. 46, No. 14, pp. 1599-1608, DOI \doi{10.1080/00036846.2014.880106}.
#'
#' Andreas Peichl, Thilo Schaefer, and Christoph Scheicher (2010). Measuring richness and poverty: A micro data
#' application to Europe and Germany. \emph{Review of Income and Wealth}, Vol. 56, No.3, pp. 597-619.
#'
#' Guillaume Osier (2009). Variance estimation for complex indicators of poverty and inequality.
#' \emph{Journal of the European Survey Research Association}, Vol.3, No.3, pp. 167-195,
#' ISSN 1864-3361, URL \url{https://ojs.ub.uni-konstanz.de/srm/article/view/369}.
#'
#' @keywords survey
#'
#' @examples
#' library(survey)
#' library(laeken)
#' data(eusilc) ; names( eusilc ) <- tolower( names( eusilc ) )
#'
#' # linearized design
#'
#' des_eusilc <- svydesign( ids = ~rb030 , strata = ~db040 ,  weights = ~rb050 , data = eusilc )
#' des_eusilc <- convey_prep( des_eusilc )
#'
#' # replicate-weighted design
#' des_eusilc_rep <- as.svrepdesign( des_eusilc , type = "bootstrap" )
#' des_eusilc_rep <- convey_prep( des_eusilc_rep )
#'
#' # concave Chakravarty richness measure
#' # higher g= parameters tend toward headcount ratio, richness threshold fixed
#' svyrich(~eqincome, des_eusilc, type_measure = "Cha" , g=3,  abs_thresh=30000)
#' # g=1 parameter computes the richness gap index, richness threshold fixed
#' svyrich(~eqincome, des_eusilc, type_measure = "Cha" , g=1,  abs_thresh=30000)
#' # higher g= parameters tend toward headcount ratio, richness threshold equal to the median
#' svyrich(~eqincome, des_eusilc, type_measure = "Cha" , g=3, type_thresh= "relq" )
#' # g=1 parameter computes the richness gap index, richness threshold equal to the median
#' svyrich(~eqincome, des_eusilc, type_measure = "Cha" , g=1, type_thresh= "relq" )
#' # higher g= parameters tend toward headcount ratio, richness threshold equal to the mean
#' svyrich(~eqincome, des_eusilc, type_measure = "Cha" , g=3, type_thresh= "relm" )
#' # g=1 parameter computes the richness gap index, richness threshold equal to the mean
#' svyrich(~eqincome, des_eusilc, type_measure = "Cha" , g=1, type_thresh= "relm" )
#'
#' #  using svrep.design:
#' # higher g= parameters tend toward headcount ratio, richness threshold fixed
#' svyrich(~eqincome, des_eusilc_rep, type_measure = "Cha" , g=3, abs_thresh=30000 )
#' # g=1 parameter computes the richness gap index, richness threshold fixed
#' svyrich(~eqincome, des_eusilc_rep, type_measure = "Cha" , g=1, abs_thresh=30000 )
#' # higher g= parameters tend toward headcount ratio, richness threshold equal to the median
#' svyrich(~eqincome, des_eusilc_rep, type_measure = "Cha" , g=3, type_thresh= "relq" )
#' # g=1 parameter computes the richness gap index, richness threshold equal to the median
#' svyrich(~eqincome, des_eusilc_rep, type_measure = "Cha" , g=1, type_thresh= "relq" )
#' # higher g= parameters tend toward headcount ratio, richness threshold equal to the mean
#' svyrich(~eqincome, des_eusilc_rep, type_measure = "Cha" , g=3, type_thresh= "relm" )
#' # g=1 parameter computes the richness gap index, richness threshold equal to the mean
#' svyrich(~eqincome, des_eusilc_rep, type_measure = "Cha" , g=1, type_thresh= "relm" )
#'
#' \dontrun{
#'
#' # database-backed design
#' library(RSQLite)
#' library(DBI)
#' dbfile <- tempfile()
#' conn <- dbConnect( RSQLite::SQLite() , dbfile )
#' dbWriteTable( conn , 'eusilc' , eusilc )
#'
#' dbd_eusilc <-
#' 	svydesign(
#' 		ids = ~rb030 ,
#' 		strata = ~db040 ,
#' 		weights = ~rb050 ,
#' 		data="eusilc",
#' 		dbname=dbfile,
#' 		dbtype="SQLite"
#' 	)
#'
#'
#' dbd_eusilc <- convey_prep( dbd_eusilc )
#'
#' # higher g= parameters tend toward headcount ratio, richness threshold fixed
#' svyrich(~eqincome, dbd_eusilc, type_measure = "Cha" , g=3, abs_thresh=30000 )
#' # g=1 parameter computes the richness gap index, richness threshold fixed
#' svyrich(~eqincome, dbd_eusilc, type_measure = "Cha" , g=1, abs_thresh=30000 )
#' # higher g= parameters tend toward headcount ratio, richness threshold equal to the median
#' svyrich(~eqincome, dbd_eusilc, type_measure = "Cha" , g=3, type_thresh= "relq" )
#' # g=1 parameter computes the richness gap index, richness threshold equal to the median
#' svyrich(~eqincome, dbd_eusilc, type_measure = "Cha" , g=1, type_thresh= "relq" )
#' # higher g= parameters tend toward headcount ratio, richness threshold equal to the mean
#' svyrich(~eqincome, dbd_eusilc, type_measure = "Cha" , g=3, type_thresh= "relm" )
#' # g=1 parameter computes the richness gap index, richness threshold equal to the mean
#' svyrich(~eqincome, dbd_eusilc, type_measure = "Cha" , g=1, type_thresh= "relm" )
#'
#' dbRemoveTable( conn , 'eusilc' )
#'
#' dbDisconnect( conn , shutdown = TRUE )
#'
#' }
#'
#' @export
svyrich <-
  function(formula, design, ...) {
    if (!('g' %in% names(list(...))))
      stop("g= parameter must be specified")

    if (!('type_measure' %in% names(list(...))))
      stop("type_measure= parameter must be specified")

    if ('type_measure' %in% names(list(...)) &&
        !(list(...)[["type_measure"]] %in% c('Cha' , 'FGTT1' , 'FGTT2')))
      stop('type_measure= must be "Cha", "FGTT1" or "FGTT2". See ?svyrich for more detail.')

    if ('type_measure' %in% names(list(...)) &&
        (list(...)[["type_measure"]] == 'Cha') &&
        (list(...)[["g"]] < 0))
      stop('type_measure="Cha" is defined for g > 0 only.')

    if ('type_measure' %in% names(list(...)) &&
        (list(...)[["type_measure"]] == 'FGTT1') &&
        ((list(...)[["g"]] > 1) |
         (list(...)[["g"]] < 0)))
      stop('type_measure="FGTT1" is defined for 0 <= g <= 1 only.')

    if ('type_measure' %in% names(list(...)) &&
        (list(...)[["type_measure"]] == 'FGTT2') &&
        (list(...)[["g"]] <= 1))
      stop('type_measure="FGTT2" is defined for g > 1 only.')

    if ('type_measure' %in% names(list(...)) &&
        (list(...)[["type_measure"]] == 'FGTT2'))
      warning(
        'Brzezinski (2014) warns about poor inferential performance for convex richness measures. See ?svyrich for reference.'
      )

    if ('type_thresh' %in% names(list(...)) &&
        !(list(...)[["type_thresh"]] %in% c('relq' , 'abs' , 'relm')))
      stop('type_thresh= must be "relq", "relm" or "abs". See ?svyrich for more detail.')

    if (length(attr(terms.formula(formula) , "term.labels")) > 1)
      stop(
        "convey package functions currently only support one variable in the `formula=` argument"
      )

    UseMethod("svyrich", design)

  }

#' @rdname svyrich
#' @export
svyrich.survey.design <-
  function(formula,
           design,
           type_measure ,
           g,
           type_thresh = "abs",
           abs_thresh = NULL,
           percent = 1.5 ,
           quantiles = .50 ,
           thresh = FALSE ,
           na.rm = FALSE,
           deff = FALSE ,
           linearized = FALSE ,
           ...) {
    # check for convey_prep
    if (is.null(attr(design, "full_design")))
      stop(
        "you must run the ?convey_prep function on your linearized survey design object immediately after creating it with the svydesign() function."
      )

    # check for threshold type
    if (type_thresh == "abs" &
        is.null(abs_thresh))
      stop("abs_thresh= must be specified when type_thresh='abs'")

    # set up richness measures auxiliary functions
    if (type_measure == "Cha") {
      h <-
        function(y , thresh , g)
          ifelse(y > thresh ,  1 - (thresh / y) ^ g , 0)
      ht <-
        function(y , thresh , g)
          ifelse(y > thresh ,-(g / thresh) * (thresh / y) ^ g , 0)

    } else if (type_measure == "FGTT1") {
      h <-
        function(y , thresh , g)
          ifelse(y > thresh , (1 - thresh / y) ^ g , 0)
      ht <-
        function(y , thresh , g)
          ifelse(y > thresh ,-g / y * (1 - thresh / y) ^ (g - 1) , 0)
    } else if (type_measure == "FGTT2") {
      h <-
        function(y , thresh , g)
          ifelse(y > thresh , (y  / thresh - 1) ^ g , 0)
      ht <-
        function(y , thresh , g)
          ifelse(y > thresh , (-g * y / (thresh * y - thresh ^ 2)) * (y / thresh - 1) ^
                   g , 0)
    }

    # if the class of the full_design attribute is just a TRUE, then the design is
    # already the full design.  otherwise, pull the full_design from that attribute.
    if ("logical" %in% class(attr(design, "full_design")))
      full_design <-
        design
    else
      full_design <- attr(design, "full_design")

    ### richness threshold calculation

    # collect full sample income
    incvec <-
      model.frame(formula, full_design$variables, na.action = na.pass)[[1]]

    # filter missing values
    if (na.rm) {
      nas <- is.na(incvec)
      full_design$prob <- ifelse(nas , Inf , full_design$prob)
    }

    # collect full sample weights
    wf <- 1 / full_design$prob

    # add indices
    if (is.null(names(full_design$prob)))
      ncom <-
      names(full_design$prob) <-
      rownames(full_design$variables)
    else
      ncom <- names(full_design$prob)

    # branch on threshold type and its linearized function
    if (type_thresh == 'relq') {
      ARPT <-
        svyiqalpha(
          formula = formula,
          full_design,
          alpha = quantiles,
          na.rm = na.rm ,
          ...
        )
      th <- percent * coef(ARPT)[[1]]
      arptlin <- rep( 0 , length( wf ) )
      arptlin[ wf > 0 ] <- percent * attr(ARPT , "lin")
    } else if (type_thresh == 'relm') {
      Yf <- sum( ifelse( wf  > 0 ,  wf * incvec , 0 ) )
      Nf <- sum( wf )
      muf <- Yf / Nf
      th <- percent * muf
      arptlin <- ifelse( wf  > 0 , percent * (incvec - muf) / Nf , 0 )
    } else if (type_thresh == 'abs') {
      th <- abs_thresh
      arptlin <- rep(0 , length(wf))
    }
    names(arptlin) <- rownames(full_design$variables)

    ### domain richness measure estimate

    # collect income from domain sample
    incvar <-
      model.frame(formula, design$variables, na.action = na.pass)[[1]]

    # treat missing values
    if (na.rm) {
      nas <- is.na(incvar)
      design$prob <- ifelse(nas , Inf , design$prob)
    }

    # collect full sample weights
    w <- 1 / design$prob

    # domain population size
    Nd <- sum(w)

    # compute value
    estimate <- sum( ifelse( w > 0 , w * h(incvar , th , g) , 0 ) ) / Nd

    ### linearization and variance estimation

    # add linearized threshold
    ID <-
      1 * (rownames(full_design$variables) %in% rownames(design$variables)[w > 0])
    richlin1 <- ID * (h(incvec , th , g) - estimate) / Nd
    richlin1 <- ifelse(wf != 0 , richlin1 , 0)
    Fprime <-
      -densfun(
        formula ,
        design = design ,
        th ,
        h = NULL ,
        FUN = "F",
        na.rm = na.rm
      )
    ahat <- sum( ifelse( w > 0 , w * ht(incvar , th , g) , 0 ) ) / Nd
    ahF <- ahat + h(th , th , g) * Fprime
    if (type_thresh %in% c("relq" , "relm"))
      richlin2 <- ahF * arptlin
    else
      richlin2 <- 0
    richlin <- richlin1 + richlin2
    names(richlin) <- rownames(full_design$variables)

    # compute variance
    variance <-
      survey::svyrecvar(
        richlin / full_design$prob,
        full_design$cluster,
        full_design$strata,
        full_design$fpc,
        postStrata = full_design$postStrata
      )
    variance[which(is.nan(variance))] <- NA
    colnames(variance) <-
      rownames(variance) <-
      strsplit(as.character(formula)[[2]] , ' \\+ ')[[1]]

    # compute deff
    if (is.character(deff) || deff) {
      nobs <- sum(weights(full_design) != 0)
      npop <- sum(weights(full_design))
      if (deff == "replace")
        vsrs <-
        survey::svyvar(richlin , full_design, na.rm = na.rm) * npop ^ 2 / nobs
      else
        vsrs <-
        survey::svyvar(richlin , full_design , na.rm = na.rm) * npop ^ 2 * (npop - nobs) /
        (npop * nobs)
      deff.estimate <- variance / vsrs
    }

    # coerce to matrix
    richlin <-
      matrix(richlin ,
             nrow = length(richlin) ,
             dimnames = list(names(richlin) , strsplit(as.character(formula)[[2]] , ' \\+ ')[[1]]))

    # setup result object
    rval <- estimate
    colnames(variance) <-
      rownames(variance) <-
      names(rval) <-
      strsplit(as.character(formula)[[2]] , ' \\+ ')[[1]]
    class(rval) <- c("cvystat" , "svystat")
    attr(rval, "var") <- variance
    attr(rval, "statistic") <-
      paste0(type_measure, "-" , g, "-richness measure")
    if (thresh)
      attr(rval, "thresh") <- th
    if (is.character(deff) ||
        deff)
      attr(rval , "deff") <- deff.estimate
    if (linearized)
      attr(rval, "linearized") <- richlin
    if (linearized)
      attr(rval , "index") <- as.numeric(rownames(richlin))
    rval

  }


#' @rdname svyrich
#' @export
svyrich.svyrep.design <-
  function(formula,
           design,
           type_measure,
           g,
           type_thresh = "abs",
           abs_thresh = NULL,
           percent = 1.5 ,
           quantiles = .50,
           thresh = FALSE ,
           na.rm = FALSE,
           deff = FALSE ,
           linearized = FALSE ,
           return.replicates = FALSE ,
           ...) {
    # chek for convey_prep
    if (is.null(attr(design, "full_design")))
      stop(
        "you must run the ?convey_prep function on your replicate-weighted survey design object immediately after creating it with the svrepdesign() function."
      )

    # check for threshold type
    if (type_thresh == "abs" &
        is.null(abs_thresh))
      stop("abs_thresh= must be specified when type_thresh='abs'")

    # if the class of the full_design attribute is just a TRUE, then the design is
    # already the full design.  otherwise, pull the full_design from that attribute.
    if ("logical" %in% class(attr(design, "full_design")))
      full_design <-
        design
    else
      full_design <- attr(design, "full_design")

    # set up richness measures auxiliary functions
    if (type_measure == "Cha") {
      h <-
        function(y , thresh , g)
          ifelse(y > thresh ,  1 - (thresh / y) ^ g , 0)
      ht <-
        function(y , thresh , g)
          ifelse(y > thresh ,-(g / thresh) * (thresh / y) ^ g , 0)

    } else if (type_measure == "FGTT1") {
      h <-
        function(y , thresh , g)
          ifelse(y > thresh , (1 - thresh / y) ^ g , 0)
      ht <-
        function(y , thresh , g)
          ifelse(y > thresh ,-g / y * (1 - thresh / y) ^ (g - 1) , 0)
    } else if (type_measure == "FGTT2") {
      h <-
        function(y , thresh , g)
          ifelse(y > thresh , (y  / thresh - 1) ^ g , 0)
      ht <-
        function(y , thresh , g)
          ifelse(y > thresh , (-g * y / (thresh * y - thresh ^ 2)) * (y / thresh - 1) ^
                   g , 0)
    }

    # ComputeRich function
    ComputeRich <-
      function(y , w , thresh , g) {
        N <- sum(w)
        sum(w * h(y , thresh , g)) / N
      }

    ### threshold calculation

    # collect full sample data
    incvec <-
      model.frame(formula, full_design$variables, na.action = na.pass)[[1]]

    # treat missing
    if (na.rm) {
      nas <- is.na(incvec)
      full_design <- full_design[!nas, ]
      incvec <-
        model.frame(formula, full_design$variables, na.action = na.pass)[[1]]
    }

    # collect sampling weights
    wsf <- weights(full_design, "sampling")

    # add indices
    names(incvec) <-
      names(wsf) <- row.names(full_design$variables)

    # poverty threshold
    if (type_thresh == 'relq')
      th <- percent * computeQuantiles(incvec, wsf, p = quantiles)
    if (type_thresh == 'relm')
      th <- percent * sum(incvec * wsf) / sum(wsf)
    if (type_thresh == 'abs')
      th <- abs_thresh

    ### domain richness measure

    # collect domain sample data
    incvar <-
      model.frame(formula, design$variables, na.action = na.pass)[[1]]

    # treat missing values
    if (na.rm) {
      nas <- is.na(incvar)
      design <- design[!nas, ]
      incvar <-
        model.frame(formula, design$variables, na.action = na.pass)[[1]]
    }

    # collect sampling weights
    ws <- weights(design, "sampling")

    # add indices
    names(incvar) <- names(ws) <- row.names(design$variables)

    # compute point estimate
    rval <- ComputeRich(incvar, ws, th , g)

    ### variance calculation

    # collect full sample replicate weights
    wwf <- weights(full_design, "analysis")

    # create domain indices
    ind <-
      rownames(full_design$variables) %in% rownames(design$variables)

    # compute replicates
    qq <- apply(wwf , 2, function(wfi) {
      # commpute replicate threshold
      if (type_thresh == 'relq')
        thr <- percent * computeQuantiles(incvec, wfi , p = quantiles)
      if (type_thresh == 'relm')
        thr <- percent * sum(incvec * wfi) / sum(wfi)
      if (type_thresh == 'abs')
        thr <- abs_thresh

      # compute replicate domain poverty measure
      ComputeRich(incvec[ind] ,  wfi[ind] , thr , g)

    })

    # treat missing
    if (anyNA(qq)) {
      variance <-  as.matrix(NA)
      names(rval) <-
        names(variance) <-
        rownames(variance) <-
        strsplit(as.character(formula)[[2]] , ' \\+ ')[[1]]
      class(rval) <- c("cvystat" , "svrepstat")
      attr(rval , "var") <- variance
      attr(rval, "statistic") <-
        paste0(type_measure, "-" , g, "-richness measure")
      if (thresh)
        attr(rval, "thresh") <- th
      if (is.character(deff) || deff)
        attr(rval , "deff") <- NA
      return(rval)
    }

    # calculate variance
    variance <-
      survey::svrVar(qq,
                     full_design$scale ,
                     full_design$rscales,
                     mse = full_design$mse,
                     coef = rval)
    names(variance) <-
      strsplit(as.character(formula)[[2]] , ' \\+ ')[[1]]

    # compute deff
    if (is.character(deff) || deff || linearized) {
      # compute threshold linearized function on full sample
      # branch on threshold type and its linearized function
      if (type_thresh == 'relq') {
        q_alpha <- computeQuantiles(incvec , wsf , quantiles)
        htot <- h_fun(incvec, wsf)
        Fprime <-
          densfun(
            formula ,
            design = full_design ,
            th ,
            h = htot ,
            FUN = "F",
            na.rm = na.rm
          )
        Nf <- sum(wsf)
        arptlin <-
          -(percent / (Nf * Fprime)) * (ifelse(incvec <= q_alpha , 1 , 0) - quantiles)

      }
      if (type_thresh == 'relm') {
        Yf <- sum(wsf * incvec)
        Nf <- sum(wsf)
        muf <- Yf / Nf
        arptlin <- percent * (incvec - muf) / Nf
        arptlin <- ifelse(wsf != 0 , arptlin , 0)
      }
      if (type_thresh == 'abs') {
        arptlin <- rep(0 , sum(wsf != 0))
      }
      names(arptlin) <- rownames(full_design$variables)

      # compute poverty measure linearized function
      # under fixed poverty threshold
      Nd <- sum(ws)
      ID <-
        1 * (rownames(full_design$variables) %in% rownames(design$variables)[ws > 0])
      richlin1 <- ID * (h(incvec , th , g) - rval) / Nd
      richlin1 <- ifelse(wsf != 0 , richlin1 , 0)

      # combine both linearization
      Fprime.domain <-
        -densfun(
          formula ,
          design = design ,
          th ,
          h = NULL ,
          FUN = "F",
          na.rm = na.rm
        )
      ahat <- sum(ws * ht(incvar , th , g)) / Nd
      ahF <- ahat + h(th , th , g) * Fprime.domain
      if (type_thresh %in% c("relq" , "relm"))
        richlin2 <- ahF * arptlin
      else
        richlin2 <- 0
      richlin <- richlin1 + richlin2

      # compute deff
      nobs <- length(full_design$pweights)
      npop <- sum(full_design$pweights)
      vsrs <-
        unclass(
          survey::svyvar(
            richlin ,
            full_design,
            na.rm = na.rm,
            return.replicates = FALSE,
            estimate.only = TRUE
          )
        ) * npop ^ 2 / nobs
      if (deff != "replace")
        vsrs <- vsrs * (npop - nobs) / npop
      deff.estimate <- variance / vsrs

      # add indices
      names(richlin) <- rownames(full_design$variables)

      # coerce to matrix
      richlin <-
        matrix(richlin ,
               nrow = length(richlin) ,
               dimnames = list(names(richlin) , strsplit(as.character(formula)[[2]] , ' \\+ ')[[1]]))

    }

    # build result object
    names(rval) <-
      strsplit(as.character(formula)[[2]] , ' \\+ ')[[1]]
    class(rval) <- c("cvystat" , "svrepstat")
    attr(rval , "var") <- variance
    attr(rval , "statistic") <-
      paste0(type_measure, "-" , g, "-richness measure")
    if (thresh)
      attr(rval, "thresh") <- th
    if (linearized)
      attr(rval , "linearized") <- richlin
    if (linearized)
      attr(rval , "index") <- as.numeric(rownames(richlin))

    # keep replicates
    if (return.replicates) {
      attr(qq , "scale") <- full_design$scale
      attr(qq , "rscales") <- full_design$rscales
      attr(qq , "mse") <- full_design$mse
      rval <- list(mean = rval , replicates = qq)
      class(rval) <- c("cvystat" , "svrepstat")
    }

    # add design effect estimate
    if (is.character(deff) ||
        deff)
      attr(rval , "deff") <- deff.estimate

    # return object
    rval

  }

#' @rdname svyrich
#' @export
svyrich.DBIsvydesign <-
  function (formula, design, ...) {
    if (!("logical" %in% class(attr(design, "full_design")))) {
      full_design <- attr(design , "full_design")

      full_design$variables <-
        getvars(
          formula,
          attr(design , "full_design")$db$connection,
          attr(design , "full_design")$db$tablename,
          updates = attr(design , "full_design")$updates,
          subset = attr(design , "full_design")$subset
        )

      attr(design , "full_design") <- full_design

      rm(full_design)

    }

    design$variables <-
      getvars(
        formula,
        design$db$connection,
        design$db$tablename,
        updates = design$updates,
        subset = design$subset
      )

    NextMethod("svyrich", design)
  }

Try the convey package in your browser

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

convey documentation built on May 29, 2024, 4:18 a.m.