nPath Example 6: Find Data for Sessions that Checked 3-6 Products - Teradata Vantage

Machine Learning Engine Analytic Function Reference

Product
Teradata Vantage
Release Number
8.00
1.0
Published
May 2019
Language
English (United States)
Last Update
2019-11-22
dita:mapPath
blj1506016597986.ditamap
dita:ditavalPath
blj1506016597986.ditaval
dita:id
B700-4003
lifecycle
previous
Product Category
Teradata Vantageā„¢

For sessions where the user checked between three and six products (exclusive), return the names of the most and least expensive products, the maximum price of the most expensive product, and the minimum price of the least expensive product.

Input

SQL Call

SELECT * FROM nPath@coprocessor (
  ON aggregate_clicks PARTITION BY sessionid ORDER BY clicktime
  USING
  Mode (nonoverlapping)
  Pattern ('H+.D*.C{3,6}.D')
  Symbols (pagetype = 'home' AS H, pagetype = 'checkout' AS C,
           pagetype <> 'home' AND pagetype <> 'checkout' AS D)
  Result (FIRST(sessionid OF C) AS sessionid,
          max_choose (productprice, productname OF C) AS
          most_expensive_product,
          MAX (productprice OF C) AS max_price,
          min_choose (productprice, productname of C) AS
          least_expensive_product,
          MIN (productprice OF C) AS min_price)
) AS dt;

Output

sessionid most_expensive_product max_price least_expensive_product min_price
5 cellphones 600 bookcases 150