surveydata (version 0.2.7)

dplyr-surveydata: Methods to support dplyr verbs.

Description

The surveydata package exposes functionality to support some of the dplyr verbs, e.g. dplyr::filter(). The computation is performed by dplyr, and the resulting object is of class surveydata (as well as the dplyr result).

Usage

# S3 method for surveydata
mutate(.data, ...)

# S3 method for surveydata as_tibble(x, ..., .name_repair, rownames)

# S3 method for surveydata as.tbl(x, ...)

# S3 method for surveydata select(.data, ...)

# S3 method for surveydata arrange(.data, ...)

# S3 method for surveydata summarise(.data, ...)

# S3 method for surveydata summarize(.data, ...)

# S3 method for surveydata slice(.data, ...)

Arguments

.data

surveydata object or tbl passed to dplyr verb

...

passed to dplyr verb

Examples

Run this code
withr::with_package("dplyr", {
  membersurvey %>% 
    as_tibble() %>% 
    .[c("id", "Q1", "Q2")] %>% 
    filter(Q2 == 2009)
})


Run the code above in your browser using DataLab