Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 681 Bytes

Exercise3.md

File metadata and controls

23 lines (20 loc) · 681 Bytes
  • How are the arguments matched to the parameters in the following call:
scatter.smooth(mtcars$mpg, mtcars$wt, family = "gaussian", x = "Weight of car", y = "Miles per Gallon")
  • I was looking for a function in one of the packages that come with R that had a ... parameter and that also had a parameter that came after the ... How did I find scatter.smooth() programmatically?