summary.bastaCheckCMR {BaSTA} | R Documentation |
Summary of outputs from the data checking function in BaSTA.
Description
These function provide general information about the input data set to be used for BaSTA, as well as detailes on potential issues that could have been found on the data.
Usage
## S3 method for class 'bastaCheckCMR'
summary(object, ...)
## S3 method for class 'bastaCheckCens'
summary(object, ...)
## S3 method for class 'bastaCheckCMR'
print(x, ...)
## S3 method for class 'bastaCheckCens'
print(x, ...)
Arguments
object |
Output from function |
x |
Output from function |
... |
Additional arguments passed to functions |
Details
Both functions print to the screen the results of the DataCheck
function.
Value
No return value, prints output to the console
Author(s)
Fernando Colchero fernando_colchero@eva.mpg.de
See Also
DataCheck
for running a data check on the input data for function basta
, FixCMRdata
to fix potential issues for capture-mark-recapture data.
Examples
## CMR data:
## --------- #
## Load data:
data("bastaCMRdat", package = "BaSTA")
## Check data consistency:
checkedData <- DataCheck(bastaCMRdat, dataType = "CMR", studyStart = 51,
studyEnd = 70)
## census data:
## ------------ #
## Load data:
data("bastaCensDat", package = "BaSTA")
## Check data consistency:
checkedData <- DataCheck(object = bastaCensDat, dataType = "census")
## Printed output:
## --------------- #
## Print DataCheck results:
print(checkedData)
[Package BaSTA version 2.0.0 Index]