S3 method to force the use of the R6 method.
# S3 method for community_model
autoplot(object, ...)
The model to plot.
Extra arguments passed to the plot method.
This is a helper function to always use the R6 method rather than the S3 method:
autoplot(MyModel)
is translated to MyModel$autoplot
.
myModel <- cm_drift$new(pattern_matrix_individuals(S = 10))
autoplot(myModel)