Make a table of summary statistics for detection function models
Source:R/summarize_ds_models.R
summarize_ds_models.Rd
Provide a summary table of useful information about fitted detection
functions. This can be useful when paired with knitr
's kable
function. By
default models are sorted by AIC and will therefore not allow models with
different truncations and distance binning.
Usage
summarize_ds_models(
...,
models = list(),
sort = "AIC",
output = "latex",
delta_only = TRUE
)
Arguments
- ...
models to be summarised (to be deprecated)
- models
a named list of models to be summarised. If the list is not named then default names of 'model 1', 'model 2' etc. are used.
- sort
column to sort by (default
"AIC"
)- output
should the output be given in
"latex"
compatible format or as"plain"
text?- delta_only
only output AIC differences (default
TRUE
)
Details
Note that the column names are in LaTeX format, so if you plan to manipulate
the resulting data.frame
in R, you may wish to rename the columns for
ease of access.