Skip to content

Commit

Permalink
Update Statistics.Rmd
Browse files Browse the repository at this point in the history
Fixed a typo: maximum() -> max()
  • Loading branch information
kmankine authored Nov 16, 2023
1 parent 2fad295 commit fc6cb5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eLena_md/LectureMaterials/Statistics.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ There are also specific functions that we haven't yet covered:

```r
min() # minimum, e.g. min(surveys_complete$weight)
maximum() # maximum
max() # maximum
range() # minimum and maximum
median() # median
quantile() # quantiles
Expand Down Expand Up @@ -595,4 +595,4 @@ With a small sample size like ours (and also with 2x2 contingency tables), an al

#### 7. Further information

Choosing the most suitable statistical method, evaluating test diagnostics and how to best transform your data are all quite vast topics of their own. While an in-depth discussion of these is beyond the scope of the workshop, useful resources that might be helpful for self-study are the [R for Data Science](https://r4ds.had.co.nz/) e-book (accessible for free) and [Getting Started with R: An Introduction for Biologists](https://global.oup.com/academic/product/getting-started-with-r-9780198787846?cc=fi&lang=en&).
Choosing the most suitable statistical method, evaluating test diagnostics and how to best transform your data are all quite vast topics of their own. While an in-depth discussion of these is beyond the scope of the workshop, useful resources that might be helpful for self-study are the [R for Data Science](https://r4ds.had.co.nz/) e-book (accessible for free) and [Getting Started with R: An Introduction for Biologists](https://global.oup.com/academic/product/getting-started-with-r-9780198787846?cc=fi&lang=en&).

0 comments on commit fc6cb5a

Please sign in to comment.