seg_con: Create the segment container

View source: R/segment_container.R

seg_conR Documentation

Create the segment container

Description

This function combines rules into a container.

Usage

seg_con(context = "hits", conjunction = "and", rules = NULL, exclude = FALSE)

Arguments

context

Defines the level that the segment logic should operate on. Valid values are visitors, visits, and hits. See Details

conjunction

This defines the relationship of the rules. And (default) and or are the two options.

rules

List of rules and/or containers. Must be wrapped in a list() function. Adding a container list item will nest it within a container.

exclude

Exclude the entire container

Details

Context

The rules in a segment have a context that specify the level of operation. The context can be "visitors", "visits" or "hits." As an example, let's build a segment rule where revenue is greater than 0 (meaning a purchase took place) and change the context to see how things change. If the context is set to "visitors", the segment includes all hits from visitors that have a purchase of some kind during a visit. This is useful in analyzing customer behavior in visits leading up to a purchase and possibly behavior after a purchase. If the context is set to "visits", the segment includes all hits from visits where a purchase occurred. This is useful for seeing the behavior of a visitor in immediate page views leading up to the purchase. If the context is set to "hit", the segment only includes hits where a purchase occurred, and no other hits. This is useful in seeing which products were most popular. In the above example, the context for the container listed is hits. This means that the container only evaluates data at the hit level, (in contrast to visit or visitor level). The rules in the container are also at the hit level.

Value

a structured list of containers to be used to build the segment


benrwoodard/adobeanalyticsr documentation built on Nov. 13, 2023, 9:32 a.m.