Thursday 20 July 2017

Functions are first class objects in R

Cited from The R Language

Functions in R are “first class objects”, which means that they can be treated much like any other R object. Importantly,
  • Functions can be passed as arguments to other functions.
  • Functions can be nested, so that you can define a function inside of another function.

No comments:

Post a Comment