Patterns describe construction of a predictor. For example sum pattern, which sums column by subject in table could be described as:
SELECT subject , SUM(@COLUMN) AS predictor FROM @TABLE GROUP BY subject;