Session Ready
Exercise

Passing arguments with ...

Rather than explicitly giving calc_harmonic_mean() and na.rm argument, you can use ... to simply "pass other arguments" to mean().

The dplyr package is loaded.

Instructions 1/2
undefined XP
  • 1
  • 2
  • Replace the na.rm argument with ... in the signature and body of calc_harmonic_mean().