One of the reasons why I have started the
package is to use it for marketing research and marketing analytics. The common problem that I face, when working with these courses is analysing the data measured in different scales. While R handles numeric scales natively, the work with categorical is not satisfactory. Yes, I know that there are packages that implement some of the functions, but I wanted to have them in one place without the need to install a lot of packages and satisfy the dependencies. After all, what’s the point in installing a package for Cramer’s V, when it can be calculated with two lines of code? So, here’s a brief explanation of the functions for marketing analytics in
.
I will use mtcars
dataset for the examples, but we will transform some of the variables into factors:
*All the functions discussed in this post are available in *
starting from v0.4.0. However, I’ve found several bugs since the submission to CRAN, and the most recent version with bugfixes is now available on github.
Analysing the relation between the two variables in categorical scales
Cramer’s V
Cramer’s V measures the relation between two variables in categorical scale. It is implemented in the
function. It returns the value in a range of 0 to 1 (1 – when the two categorical variables are linearly associated with each other, 0 – otherwise), Chi-Squared statistics from the
, the respective p-value and the number of degrees of freedom. The tested hypothesis in this case is formulated as:\begin{matrix}H_0: V = 0 \text{ (the variables don’t have association);} \H_1: V \neq 0 \text{ (there is an association between the variables).}\end{matrix}
Here’s what we get when trying to find the association between the engine and transmission in the mtcars
data:
Judging by this output, the association between these two variables is very low (close to zero) and is not statistically significant.
Cramer’s V can also be used for the data in numerical scales. In general, this might be not the most suitable solution, but this might be useful when you have a small number of values in the data. For example, the variable gear
in mtcars
is numerical, but it has only three options (3, 4 and 5). Here’s what Cramer’s V tells us in the case of gear
and am
:
As we see, the value is high in this case (0.809), and the null hypothesis is rejected on 5% level. So we can conclude that there is a relation between the two variables. This does not mean that one variable causes the other one, but they both might be driven by something else (do more expensive cars have less gears but the automatic transmission?).
Plotting categorical variables
While R allows plotting two categorical variables against each other, the plot is hard to read and is not very helpful (in my opinion):
Default plot of a table
So I have created a function that produces a heat map for two categorical variables. It is called
:
Tableplot for the two categorical variables
It is based on
function and uses the frequencies inside the table for the colours:
The darker sectors mean that there is a higher concentration of values, while the white ones correspond to zeroes. So, in our example, we see that the majority of cars have automatic transmissions with three gears. Furthermore, the plot shows that there is some sort of relation between the two variables: the cars with automatic transmissions have the lower number of gears, while the ones with the manual have the higher number of gears (something we’ve already noticed in the previous subsection).
Association between the categorical and numerical variables
While Cramer’s V can also be used for the measurement of association between the variables in different scales, there are better instruments. For example, some analysts recommend using intraclass correlation coefficient when measuring the relation between the numerical and categorical variables. But there is a simpler option, which involves calculating the coefficient of multiple correlation between the variables. This is implemented in
function of
. The y
variable should be numerical, while x
can be of any type. What the function then does is expands all the factors and runs a regression via
function, returning the square root of the coefficient of determination. If the variables are linearly related, then the returned value will be close to one. Otherwise it will be closet to zero. The function also returns the F statistics from the regression, the associated p-value and the number of degrees of freedom (the hypothesis is formulated similarly to
function).
Here’s how it works:
In this example, the simple linear regression of mpg from the set of dummies is constructed, and we can conclude that there is a linear relation between the variables, and that this relation is statistically significant.
Association between several variables
Measures of association
When you deal with datasets (i.e. data frames or matrices), then you can use
function in order to calculate the correlation coefficients between the variables in the data. But when you have a mixture of numerical and categorical variables, the situation becomes more difficult, as the correlation does not make sense for the latter. This motivated me to create a function that uses either
, or
functions depending on the types of data (see discussions of
and
above). The function is called
or
and returns three matrices: the values of the measures of association, their p-values and the types of the functions used between the variables. Here’s an example:
One thing to note is that the function considers numerical variables as categorical, when they only have up to 10 unique values. This is useful, for example, in case of number of gears
in the dataset.
Plots of association between several variables
Similarly to the problem with
, scatterplot matrix (produced using
) is not meaningful in case of a mixture of variables:
Default scatter plot matrix
It makes sense to use scatterplot in case of numeric variables,
in case of categorical and
in case of a mixture. So, there is the function
in
that creates something more meaningful. It uses the same algorithm as
function, but produces plots instead of calculating measures of association. So, gear
will be considered as categorical and the function will produce either
or
, when plotting it against other variables.
Here’s an example:
Spread matrix
This plot demonstrates, for example, that the number of carburetors influences fuel consumption (something that we could not have spotted in the case of
). Notice also, that the number of gears influences the fuel consumption in a non-linear relation as well. So constructing the model with dummy variables for the number of gears might be a reasonable thing to do.
The function also has the parameter log
, which will transform all the numerical variables using logarithms, which is handy, when you suspect the non-linear relation between the variables. Finally, there is a parameter histogram
, which will plot either histograms, or barplots on the diagonal.
Spread matrix in logs
The plot demonstrates that the disp
has a strong non-linear relation with mpg
, and, similarly, drat
and hp
also influence mpg
in a non-linear fashion.
Regression diagnostics
One of the problems of linear regression that can be diagnosed prior to the model construction is multicollinearity. The conventional way of doing this diagnostics is via calculating the variance inflation factor (VIF) after constructing the model. However, VIF is not easy to interpret, because it lies in (1,\infty). Coefficients of determination from the linear regression models of explanatory variables are easier to interpret and work with. If such a coefficient is equal to one, then there are some perfectly correlated explanatory variables in the dataset. If it is equal to zero, then they are not linearly related.
There is a function
or
in
that returns the set of coefficients of determination for the explanatory variables. The good thing is that this can be done before constructing any model. In our example, the first column, mpg
is the response variable, so we can diagnose the multicollinearity the following way:
As we can see from the output above, disp
is the most linearly related with the variables, so including it in the model might cause the multicollinearity, which will decrease the efficiency of the estimates of parameters.
Related