Learn R Programming

completejourney (version 1.1.0)

products: Product metadata.

Description

Product metadata for all products purchased by households participating in the Customer Journey study.

Usage

products

Arguments

Value

products

a tibble

Format

A data frame with 92,331 rows and 7 variables

  • product_id: Uniquely identifies each product

  • manufacturer_id: Uniquely identifies each manufacturer

  • department: Groups similar products together

  • brand: Indicates Private or National label brand

  • product_category: Groups similar products together at lower level

  • product_type: Groups similar products together at lowest level

  • package_size: Indicates package size (not available for all products)

Examples

Run this code
# NOT RUN {
# full data set
products

# Transaction line items that don't have product metadata
require("dplyr")
transactions_sample %>%
  anti_join(products, "product_id")
# }

Run the code above in your browser using DataLab