in Technology by

What arguments are required in the R6Class?

Please log in or register to answer this question.

1 Answer

0 votes
by

In order to create an R6 class in R, the following arguments are required –

  • The first argument in the R6 class is the classname itself. It improves the error messages and allows us to make use of R6 objects with the given S3 generics.
  • The second argument of the R6 argument is ‘public’. This argument provides several methods and fields which make use of snake_case.

Related questions

...