Skip to content

Commit

Permalink
Clarify how to call analyze_all()
Browse files Browse the repository at this point in the history
Fix #456
  • Loading branch information
Bisaloo committed Jul 19, 2024
1 parent 5822b31 commit 7fde9b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion episodes/04-cond.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ analyze_all <- function(folder = "data", pattern) {
```

While these are useful in an interactive R session, what if we want to send our results to our collaborators?
Since we currently have 12 data sets, running `analyze_all` creates 36 plots.
Since we currently have 12 data sets, running `analyze_all(pattern = inflammation.*csv)` creates 36 plots.
Saving each of these individually would be tedious and error-prone.
And in the likely situation that we want to change how the data is processed or the look of the plots, we would have to once again save all 36 before sharing the updated results with our collaborators.

Expand Down

0 comments on commit 7fde9b4

Please sign in to comment.