fix mistake missing brackets 1:length

This commit is contained in:
behinger (s-ccs 001)
2023-10-11 11:12:33 +00:00
parent 08088be50a
commit 5609443ed8
2 changed files with 15 additions and 1 deletions

View File

@@ -56,7 +56,7 @@ Note that there is no `cummean` function, but clever element-wise division in co
::: {.callout-tip collapse="true"}
## click to show solution
`cumsum(x) ./ 1:length(x)`
`cumsum(x) ./ (1:length(x))`
:::
## 3. Plotting!