Visitor Analysis

Now let’s attempt to segment visitors into categories and direct customers to the most appropriate channel. Our visitor analysis has the following high-level steps:

  • Group visits by unique visitors

  • Segment visitors using a clustering model

  • Join the cluster labels with customer data

  • Send the segmented data to appropriate channels for further engagement

Grouping Visitors

Using a similar technique as for referrers, we will now examine the behavior of website visitors across time (sessions).

  1. Returning to the LogsDataiku_prepared dataset, create a new Group recipe with visitor_id as the column to group by. Keep the default output name, LogsDataiku_prepared_by_visitor_id.

  2. At the Group step, keep Compute count for each group selected, and add the following per-field aggregations:

  • For day, day_of_week, hour, session_id, and url: Distinct

  • For ip_address_country and user_agent_type: First

  • For blog, applications, home, company, products, and data-science: Sum

  1. Run the recipe, updating the schema to 15 columns.

../../../_images/compute_LogsDataiku_prepared_by_visitor_id.png

Now for each unique visitor, we know information such as their IP address, their number of visits, the specific pages they visited, and their device (browser vs. mobile).

Clustering Web Visitors

Let’s use this data to cluster visitors into certain categories that may help our colleagues in Marketing and Sales to be more targeted in their outreach efforts.

  1. From the output dataset grouped by visitor_id, go into the Lab and create a Quick Model under Visual analysis.

  2. Then choose a Clustering task and, in a Quick model style, a K-Means clustering model. Keep the default analysis name.

  3. Click Train to train the first model. You do not need to provide a session name or description.

Dataiku will recognize the data types and use Machine Learning best practices when training a default clustering model. Expect the final cluster profiles to vary because of sampling effects, but there will be five primary clusters, plus a sixth cluster containing observations that do not fit any of the primary clusters.

Clicking on the model name, here KMeans (k=5), brings up the Summary tab, where you can find a wide array of model metrics and information. In the Summary tab, click the pencil icon next to each default cluster name to rename the clusters according to the suggestions below:

Cluster

Larger-than-usual numbers of:

US visitors

Americans

French visitors

French

Frequent visitors

Distinct visits

Engaged visitors

Distinct URLs visited

Sales prospects

Visits to the products page

  1. From the button at the top right, Deploy the model to the Flow as a retrainable model.

  2. Apply it to the LogsDataiku_prepared_by_visitor_id dataset. Keep the default model name.

  3. Selecting the model from the Flow, initiate an Apply recipe. Choose LogsDataiku_prepared_by_visitor_id as the input.

  4. Name the output dataset LogsDataiku_segmented.

  5. Create and run the recipe.

../../../_images/MBoCutj2-summary.png

Now, one column, cluster_labels, has been added to the output LogsDataiku_segmented.

Joining the Clusters and Customer Data

In order to map these segments to known customers, we’ll need our customer data.

  1. If not already having done so, create a new UploadedFiles dataset from the customer data (CRM.csv.gz) and name it CRM.

  2. From LogsDataiku_segmented, initiate a Join recipe, adding CRM as the second input. Keep the default output, LogsDataiku_segmented_joined.

  3. In the Join step, visitor_id should be automatically recognized as the join key. Change the type of join to an Inner Join to keep only records where a customer can be successfully matched with website visits.

../../../_images/compute_LogsDataiku_segmented_joined.png

After completing the join, expect an output of 5602 rows and 35 columns.

Customizing and Activating Segments

Now we want to feed these customers into the right channel: Marketing, Prospective Sales, or Sales.

  1. Create a Prepare recipe from the LogsDataiku_segmented_joined dataset. Keep the default output name.

  2. Add a new step with the Formula processor creating a new column, Cluster_Final, using the expression defined below:

if(cluster_labels == "US visitors" || cluster_labels == "French visitors", "Marketing" +
  if(user_agent_type_first =="browser", " - browser", " - mobile"),
  if(applications_sum >= 2 || products_sum >= 2, "Sales", "Sales prospecting"))
  1. Run the recipe, updating the schema to 36 columns.

../../../_images/compute_LogsDataiku_segmented_joined_prepared.png

Now let’s split the dataset on this newly created variable so we can ship the smaller subsets to the right teams.

  1. From the output dataset, LogsDataiku_segmented_joined_prepared, create a Split recipe that sends each of the four values of Cluster_Final to individual datasets. Use the names:

  • Send_to_Sales

  • Send_to_Sales_Prospecting

  • Send_to_Marketing_browser

  • Send_to_Marketing_mobile

  1. Choose Map values of a single column as the Splitting method.

  2. Choose Cluster_Final as the column on which to split.

  3. Add the values and outputs according to the screenshot below.

  4. Run the recipe.

../../../_images/split_CRM_enriched.png

These newly generated datasets are immediately usable by customer-facing team members to send targeted emails!