Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Quotation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -1181,7 +1181,7 @@ Functions like `curve()` that use an expression containing a pronoun are known a

1. In the linear-model example, we could replace the `expr()` in
`reduce(summands, ~ expr(!!.x + !!.y))` with `call2()`:
`reduce(summands, call2, "+")`. Compare and contrast the two
`reduce(summands, call2, .fn = "+")`. Compare and contrast the two
approaches. Which do you think is easier to read?

1. Re-implement the Box-Cox transform defined below using unquoting and
Expand Down