Introduction to marketr

Introduction to marketr

marketr facilitates tidy calculation of popular quantitative marketing metrics (like Customer Experience Index and Net Promoter Score). By “tidy”, I am referring to the usage of the tidyverse packages and methodology for organizing and analyzing data. The package is designed so that beginning R users can calculate these metrics, along many dimensions, without needing to learn much R syntax. It is also helpful for more experienced programmers to do these calculations quickly.

Generate survey response data

To demonstrate the basic usage I will create simulated survey response data. needs, ease and emotion are the columns that make up CXi; nps_question is used for NPS; grps and months will show how these metrics can be calculated along categorical features and/or trended over time.

library(marketr)
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(magrittr)
library(ggplot2)

needs <- sample(2:5, 1000, replace = T)
ease <- sample(2:5, 1000, replace = T)
emotion <- sample(2:5, 1000, replace = T)
nps_question <- sample(3:10, 1000, replace = T)
grps <- c("a", "b", "c")
months <- sample(1:12, 1000, replace = T)

survey_data <- tibble::as_tibble(cbind(needs, ease, emotion, nps_question, grps, months)) %>%
  mutate(month = as.numeric(months))
## Warning in cbind(needs, ease, emotion, nps_question, grps, months): number of
## rows of result is not a multiple of vector length (arg 5)
head(survey_data)
## # A tibble: 6 × 7
##   needs ease  emotion nps_question grps  months month
##   <chr> <chr> <chr>   <chr>        <chr> <chr>  <dbl>
## 1 4     5     5       9            a     3          3
## 2 5     3     2       3            b     5          5
## 3 2     3     5       4            c     1          1
## 4 2     4     5       4            a     8          8
## 5 5     5     4       3            b     7          7
## 6 2     5     4       5            c     3          3

Calculating CXi

Customer Experience Index (CXI) was developed by Forrester. Per Forrester, CXi “measures how successfully a company delivers customer experiences that create and sustain loyalty.”

It involves scoring three questions, each with a likert scale response, and then averaging those scores together. Below, four calculations are done using two different functions.

# Overall CXi
cxi_calc(survey_data) %>% knitr::kable()
cxi survey_count
24.76667 1000
## CXi by group
cxi_calc(survey_data, grps, cx_high = 4, cx_low = 2) %>% knitr::kable()
grps cxi survey_count
a 19.56088 334
b 25.82583 333
c 28.92893 333
# Overall CXi trend
cxi_trend(survey_data, month) %>% knitr::kable() 
avg_survey_ct min_survey_ct month cxi survey_count
83.33333 73 1 21.92982 76
83.33333 73 2 24.20091 73
83.33333 73 3 35.96491 76
83.33333 73 4 26.93603 99
83.33333 73 5 25.22523 74
83.33333 73 6 22.85714 105
83.33333 73 7 31.64557 79
83.33333 73 8 12.61261 74
83.33333 73 9 21.27660 94
83.33333 73 10 20.08032 83
83.33333 73 11 26.50602 83
83.33333 73 12 28.17460 84
# Overall CXi trend by group - plotted
cxi_trend(survey_data, month, grps, cx_high = 4, cx_low = 2, min_surveys = 1, avg_surveys = 0) %>% 
  ggplot(aes(x = month, y = cxi)) +
  geom_line() +
  facet_wrap(grps ~ ., nrow = 3)
## Joining with `by = join_by(grps)`
## Joining with `by = join_by(grps)`

Calculating NPS

Net Promoter Score (NPS) was originally developed by Fred Reichheld and now is owned by Bain Company and Satmetrix Systems. The Wikipedia page is another good source of information. According to Wikipedia it “is a management tool that can be used to gauge the loyalty of a firm’s customer relationships.”

The calculation requires a single question with a ten-point scale. Like CXi it is not difficult to do manually; the package enables deeper analysis.Below, four calculations are done using two different functions.

# Overall NPS
nps_calc(survey_data) %>% knitr::kable()
nps survey_count
-51.8 1000
## NPS by group
nps_calc(survey_data, grps) %>% knitr::kable()
grps nps survey_count
a -47.90419 334
b -56.45646 333
c -51.05105 333
# Overall NPS trend
nps_trend(survey_data, month) %>% knitr::kable()
avg_survey_ct min_survey_ct month nps survey_count
83.33333 73 1 -53.94737 76
83.33333 73 2 -50.68493 73
83.33333 73 3 -55.26316 76
83.33333 73 4 -45.45455 99
83.33333 73 5 -58.10811 74
83.33333 73 6 -66.66667 105
83.33333 73 7 -51.89873 79
83.33333 73 8 -45.94595 74
83.33333 73 9 -41.48936 94
83.33333 73 10 -55.42169 83
83.33333 73 11 -50.60241 83
83.33333 73 12 -45.23810 84
# Overall NPS trend by group - plotted
nps_trend(survey_data, month, grps, min_surveys = 1, avg_surveys = 0) %>% 
  ggplot(aes(x = month, y = nps)) +
  geom_line() +
  facet_wrap(grps ~ ., nrow = 3)
## Joining with `by = join_by(grps)`
## Joining with `by = join_by(grps)`