I am performing a logistic regression to find out the probability of a given customer to click on one of my organizations emails.
The model looks thus like this:
y = β0 + β1X1 + β2X2 + ... +βnXn
where the outcome is the probability for the given observation/customer to click on a link in the email. The outcome variable I am using is a dummy called 'clicked'. The independent variables display the age, number of kids and many other information regarding the client.
I also have the time and date at which the emails where sent.
I am now curious to find out if a client is more likely to click on an email in a given month.
Am I correct to assume that in order to model this, I need to interact the 'clicked' variable with the dummy representing the month that I am interested in?
f.e. 'clicked' * 'month_july'
And set this interacted variable as the new outcome variable?
Or how would you proceed?
The model looks thus like this:
y = β0 + β1X1 + β2X2 + ... +βnXn
where the outcome is the probability for the given observation/customer to click on a link in the email. The outcome variable I am using is a dummy called 'clicked'. The independent variables display the age, number of kids and many other information regarding the client.
I also have the time and date at which the emails where sent.
I am now curious to find out if a client is more likely to click on an email in a given month.
Am I correct to assume that in order to model this, I need to interact the 'clicked' variable with the dummy representing the month that I am interested in?
f.e. 'clicked' * 'month_july'
And set this interacted variable as the new outcome variable?
Or how would you proceed?
Comment