Skip to content

Commit 1778e65

Browse files
line 217 was missing /10 in homework DataScienceSpecialization#2 item 11
chunk at lines 216 - 218 was reporting 2.92 in show answer. added / 10 to match .explanation. TA's and/pr staff - please re run as needed to correct slidify html
1 parent 19929c8 commit 1778e65

File tree

1 file changed

+1
-1
lines changed
  • 06_StatisticalInference/homework

1 file changed

+1
-1
lines changed

06_StatisticalInference/homework/hw2.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ since the variance of the sampling distribution of the mean is $\sigma^2/10$
214214
where $\sigma^2$ is the variance of a single die roll, which is
215215

216216
```{r}
217-
mean((1 : 6 - 3.5)^2)
217+
mean((1 : 6 - 3.5)^2 / 10)
218218
```
219219

220220
--- &multitext

0 commit comments

Comments
 (0)