S3 method to force the use of the R6 method.

# S3 method for community_model
autoplot(object, ...)

Arguments

object

The model to plot.

...

Extra arguments passed to the plot method.

Details

This is a helper function to always use the R6 method rather than the S3 method: autoplot(MyModel) is translated to MyModel$autoplot.

Examples

myModel <- cm_drift$new(pattern_matrix_individuals(S = 10))
autoplot(myModel)