Skip to contents

Creates an empty tibble with the standardised column structure for campaign data.

Usage

initialise_campaign_tibble()

Value

A tibble with 0 rows and standardised campaign columns

Details

Campaigns represent sampling projects or studies with metadata about timing, organisation, data quality evaluation, and confidentiality. The tibble includes the following columns:

CAMPAIGN_NAME_SHORT: Short identifier for the campaign (mandatory)

CAMPAIGN_NAME: Full descriptive name of the campaign (mandatory)

CAMPAIGN_START_DATE: Date when campaign sampling began (mandatory)

CAMPAIGN_END_DATE: Date when campaign sampling ended (optional)

ORGANISATION: Organisation responsible for the campaign (mandatory)

ENTERED_BY: Person or entity who entered the data (mandatory)

ENTERED_DATE: Date when the data was entered into the system (mandatory)

CAMPAIGN_COMMENT: Additional notes or comments about the campaign (optional)

See vignette("campaign_data") for more information.

Examples

initialise_campaign_tibble()
#> # A tibble: 0 × 8
#> # ℹ 8 variables: CAMPAIGN_NAME_SHORT <chr>, CAMPAIGN_NAME <chr>,
#> #   CAMPAIGN_START_DATE <date>, CAMPAIGN_END_DATE <date>, ORGANISATION <chr>,
#> #   ENTERED_BY <chr>, ENTERED_DATE <date>, CAMPAIGN_COMMENT <chr>