Display model specification, assessment, and run statistics.
Usage
fitinfo(
rows = "all",
cols = "normal",
report = NULL,
sort = "id",
decreasing = FALSE,
nrows = NA,
include_model = FALSE,
quiet = FALSE,
purged = FALSE,
timezone = "America/New_York"
)Arguments
- rows
Selected rows in the fits database. Use one of
a vector of
fitids'all' for all fits
a vector of one or more sites
a named list to filter fits. List items are
<field in fdb> = <value>, where<value>is a regex for character fields, or an actual value (or vector of values) for logical or numeric fields.
- cols
Selected columns to display. Use one of
brief (1)
normal (2)
long (3)
all (4)
1, 2, 3, or 4 is a shortcut for the above column sets
A vector of column names to include
Note that
model,full_model, andhyperare normally omitted from display, as they tend to be really long and uninformative. If you want to see them, include them explicitly incols, or usecols = 'all'andinclude_model = TRUEto include all three of these.- report
If TRUE, give a report (on a single fit); otherwise, list info on fits. If rows is a numeric scalar, report defaults to TRUE; otherwise FALSE.
- sort
The name of the column to be used to sort the table
- decreasing
If TRUE, sort in descending order
- nrows
Number of rows to display in the table. Positive numbers display the first n rows, and negative numbers display the last n rows. Use
nrows = NAto display all rows.- include_model
if TRUE, don't explicitly exclude
model,full_model, andhyperwhencols = 'all'- quiet
If TRUE, doesn't print anything, just returns values
- purged
If TRUE, display info for the purged database rather than the live one
- timezone
Time zone for launch time; use NULL to leave times in native UTC
Details
fitinfo works in two different modes:
fitinfo(rows = <selected rows>, cols = <selected columns>)displays a table of selected rows and columnsfitinfo(rows = <a single row>)orfitinfo(rows = ..., report = TRUE)displays a report for the selected fit id, focusing on the model assessment (the same information in thefitlog)