get_data {completejourney}R Documentation

Download full promotions and transactions data simultaneously.

Description

The promotions and transactions data sets are too large to be contained within the package. get_data() is a convenience function to download both full promotions and transactions data sets simultaneously from the source GitHub repository. An internet connection is required.

Usage

get_data(which = "both", verbose = TRUE)

Arguments

which

Character string of one or more data sets to be downloaded. Can be one of the following; default is "both":

  • "both"

  • "promotions"

  • "transactions"

verbose

Logical indicator whether or not to download silently.

Value

Downloading a single data set will result in a tibble whereas downloading multiple data sets will return a list containing each tibble. For specific details on a given data set see the data sets respective help file (i.e. ?transactions_sample).

Source

Downloading from https://github.com/bradleyboehmke/completejourney/tree/master/data. Data originated from 84.51°, Customer Journey study, http://www.8451.com/area51/ and were processes for analysis.

See Also

Use %<-% for unpacking a list with multiple tibbles to their own global environment tibble. You can also download a single data set with get_promotions and get_transactions.

Examples


# download transactions and promotions data sets
# requires internet connection
c(promotions, transactions) %<-% get_data(which = 'both')


[Package completejourney version 1.1.0 Index]