survey: Survey data frame

Description Usage Arguments Value Examples

Description

Store the data of a survey in a tibble (data frame) with a unique survey identifier, import filename, and optional doi.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
survey(
  object = data.frame(),
  id = character(),
  filename = character(),
  doi = character()
)

is.survey(object)

## S3 method for class 'survey'
summary(object, ...)

Arguments

object

A tibble or data frame that contains the survey data.

id

A mandatory identifier for the survey

filename

The import file name.

doi

Optional doi, can be omitted.

...

Arguments passed to summary method.

Value

A tibble with id, filename, doi metadata information.

Examples

1
2
3
4
5
6
7
example_survey <- survey( 
  object =data.frame ( 
    rowid = 1:6,
    observations = runif(6)), 
  id = 'example', 
  filename = "no_file"
)

retroharmonize documentation built on Nov. 3, 2021, 1:07 a.m.