Otolith <- R6::R6Class("Otolith", list(
Age = NA,
initialize = function(Age = NA) {
stopifnot(is.numeric(Age), length(Age) == 1)
self$Age <- Age
}
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.