Campaign metadata for all campaigns run for the Customer Journey study. This
dataset gives the length of time for which a campaign runs. So, any coupons
received as part of a campaign are valid within the dates contained in this
dataset.
Usage
campaign_descriptions
Arguments
Value
campaign_descriptions
a tibble
Format
A data frame with 27 rows and 4 variables
campaign_id: Uniquely identifies each campaign; Ranges 1-27
campaign_type: Type of campaign (Type A, Type B, Type C)
# NOT RUN {# full data setcampaign_descriptions
# Join product campaign metadata to campaign_table datasetrequire("dplyr")
campaigns %>%
left_join(campaign_descriptions, "campaign_id")
# }