Skip to content

Commit

Permalink
Fix typo (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
maneesha authored Aug 11, 2023
1 parent 312ed30 commit be3575a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/01-starting-with-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ R also has a function that summaries the previous common calculations:
summary(dat[, 1:4])
```

For every column in the data frame, the function "summary" calculates: the minimun value, the first quartile, the median, the mean, the third quartile and the max value, giving helpful details about the sample distribution.
For every column in the data frame, the function "summary" calculates: the minimum value, the first quartile, the median, the mean, the third quartile and the max value, giving helpful details about the sample distribution.

What if we need the maximum inflammation for all patients, or the average for each day?
As the diagram below shows, we want to perform the operation across a margin of the data frame:
Expand Down

0 comments on commit be3575a

Please sign in to comment.