dplyr-surveydata: Methods to support dplyr verbs.

dplyr-surveydataR Documentation

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 class 'surveydata'
mutate(.data, ...)

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

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

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

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

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

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

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

Arguments

.data

surveydata object or tbl passed to dplyr verb

...

passed to dplyr verb

Examples

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



andrie/surveydata documentation built on March 13, 2023, 2 a.m.