In: Statistics and Probability
A grocery store manager did a study to look at the relationship between the amount of time (in minutes) customers spend in the store and the amount of money (in dollars) they spend. The results of the survey are shown below.
Time | 14 | 10 | 13 | 5 | 20 | 20 | 6 | 8 |
---|---|---|---|---|---|---|---|---|
Money | 53 | 30 | 65 | 9 | 93 | 78 | 24 | 52 |
1. The correlation coefficient: r= 0.92.
2. The null and alternative hypotheses for correlation are:
The p-value is: 0.0012
p-value<0.05 so
Option: There is statistically significant evidence to conclude that there is a correlation between the amount of time customers spend at the store and the amount of money that they spend at the store. Thus, the regression line is useful.
3.
Option: Given any group that spends a fixed amount of time at the store, 85% of all of those customers will spend the predicted amount of money at the store.
When x=Time=20 min. then Dollars spent = -3.15+4.47*20=86.25=86 (approximately).
Option: For every additional minute customers spend at the store, they tend to spend on averge $4.47 more money at the store.
Option: The y-intercept has no practical meaning for this study.
Note:
R code for calculations:
Time=c(14,10,13,5,20,20,6,8)
Money=c(53,30,65,9,93,78,24,52)
round(cor(Time,Money),2)
lm(Money~Time)