Several data examples are built into the RMark packages (and other packaged in R) and are a handy way to understand how data are handled by a particular package. The command
>data(package="RMark")
will display the (currently 23) data examples available in RMark. To load a particular data example simple type
>data("example_name") for example
>data(blackduck) loads the known-fates example we looked at in Lab 8.
There are many other data examples for other packages. For example
>data(package="nlme") for nonlinear mixed models and
>data(package="unmarked") for analyses using unmarked (distance, occupancy, etc.)