Data Mining Tasks

1. Classification

Given a collection of records (training set ). Each record contains a set of attributes, one of the attributes is the class.

Find a model  for class attribute as a function of the values of other attributes.

Goal: previously unseen records should be assigned a class as accurately as possible.

A test set is used to determine the accuracy of the model. Usually, the given data set is divided into training and test sets, with training set used to build the model and test set used to validate it.

APPLICATIONS OF CLASSIFICATION

Direct Marketing

  • Goal: Reduce cost of mailing by targeting a set of consumers likely to buy a new cell-phone product.
  •  Approach:
    •  Use the data for a similar product introduced before.
    •  We know which customers decided to buy and which decided otherwise. This {buy, don’t buy} decision forms the class attribute.
    •  Collect various demographic, lifestyle, and company-interaction related information about all such customers.
      • Type of business, where they stay, how much they earn, etc.
    •  Use this information as input attributes to learn a classifier model.

Fraud Detection

  • Goal: Predict fraudulent cases in credit card transactions.
  • Approach:
    • Use credit card transactions and the information on its account-holder as attributes.
      • When does a customer buy, what does he buy, how often he pays on time, etc
    • Label past transactions as fraud or fair transactions. This forms the class attribute.
    • Learn a model for the class of the transactions.
    • Use this model to detect fraud by observing credit card transactions on an account.

Customer Attrition/Churn:

  • Goal: To predict whether a customer is likely to be lost to a competitor.
  • Approach:
    • Use detailed record of transactions with each of the past and present customers, to find attributes.
      • How often the customer calls, where he calls, what time-of-the day he calls most, his financial status, marital status, etc.
    • Label the customers as loyal or disloyal.
    • Find a model for loyalty.

2.) CLUSTERING

Given a set of data points, each having a set of attributes, and a similarity measure among them, find clusters such that

  •  Data points in one cluster are more similar to one another.
  • Data points in separate clusters are less similar to one another.

Similarity Measures:

  • Euclidean Distance if attributes are continuous.
  • Other Problem-specific Measures.

APPLICATIONS OF CLUSTERING

Market Segmentation:

  • Goal: subdivide a market into distinct subsets of customers where any subset may conceivably be selected as a market target to be reached with a distinct marketing mix.
  •  Approach:
    • Collect different attributes of customers based on their geographical and lifestyle related information.
    • Find clusters of similar customers.
    • Measure the clustering quality by observing buying patterns of customers in same cluster vs. those from different clusters.

Document Clustering:

  • Goal: To find groups of documents that are similar to each other based on the important terms appearing in them.
  • Approach: To identify frequently occurring terms in each document. Form a similarity measure based on the frequencies of different terms. Use it to cluster.
  • Gain: Information Retrieval can utilize the clusters to relate a new document or search term to clustered documents.

3.) ASSOCIATION RULE MINING

Given a set of records each of which contain some number of items from a given collection;

Produce dependency rules which will predict occurrence of an item based on occurrences of other items.

APPLICATION OF ASSOCIATION RULE MINING

Marketing and Sales Promotion:

  • Let the rule discovered be

{Bagels, … } –> {Potato Chips}

  • Potato Chips as consequent => Can be used to determine what should be done to boost its sales.
  • Bagels in the antecedent => Can be used to see which products would be affected if the store discontinues selling bagels.
  • Bagels in antecedent and Potato chips in consequent => Can be used to see what products should be sold with Bagels to promote sale of Potato chips!

Supermarket shelf management.

  • Goal: To identify items that are bought together by sufficiently many customers.
  • Approach: Process the point-of-sale data collected with barcode scanners to find dependencies among items.
  • A classic rule —
    • If a customer buys diaper and milk, then he is very likely to buy beer.
    • So, don’t be surprised if you find six-packs stacked next to diapers!

Inventory Management:

  • Goal: A consumer appliance repair company wants to anticipate the nature of repairs on its consumer products and keep the service vehicles equipped with right parts to reduce on number of visits to consumer households.
  • Approach: Process the data on tools and parts required in previous repairs at different consumer locations and discover the co-occurrence patterns.

Leave a Reply

Your email address will not be published. Required fields are marked *