Logistic plot
Logistic regression models assess a binomial categorical dependent variable.
A company has gathered data on whether individuals clicked on an ad, Click
, and wants to know about the amount of time spent on the site, TimeSearching
in relation to clicking the ad. To describe the results of the model to the company's board, who is interested in whether the ad will be clicked given 43 minutes are spent on the site each day, create a scatter plot with relevant visual descriptors.
The webdata
dataset and ggplot2
package have been loaded for you.
Cet exercice fait partie du cours
A/B Testing in R
Instructions
- Store the daily time spent on the site that was used to determine the likelihood of clicking the ad, 43, as
TimeSearching
. - Create the scatter plot with the logistic regression line and prediction time indicated with a black line.
Exercice interactif pratique
Essayez cet exercice en complétant cet exemple de code.
# Set the value to predict
TimeSearching <- ___
# Plot the data
ggplot(webdata, aes(x = ___, y = ___)) +
geom_point() +
geom_smooth(method = ___,
method.args = ___)) +
geom_vline(xintercept = ___)