What does “S3 methods” mean in R?

Most of the relevant information can be found by looking at ?S3 or ?UseMethod, but in a nutshell: S3 refers to a scheme of method dispatching. If you’ve used R for a while, you’ll notice that there are print, predict and summary methods for a lot of different kinds of objects. In S3, this works … Read more