Creates an HTML file containing a summary table of model fit statistics extracted using the extractModelSummaries
function. By default, the following summary statistics are included: Title, LL, Parameters, AIC, AICC, BIC, RMSEA_Estimate
, but these are customizable using the keepCols
and dropCols
parameters.
HTMLSummaryTable( modelList, filename = file.path(getwd(), "Model Comparison.html"), keepCols, dropCols, sortBy = NULL, display = FALSE )Arguments modelList
A list of models (as a data.frame
) returned from the extractModelSummaries
function.
The name of the HTML file to be created. Can be an absolute or relative path. If filename
is a relative path or just the filename, then it is assumed that the file resides in the working directory getwd()
. Example: "Mplus Summary.html"
A vector of character strings indicating which columns/variables to display in the summary. Only columns included in this list will be displayed (all others excluded). By default, keepCols
is: c("Title", "LL", "Parameters", "AIC", "AICC", "BIC", "RMSEA_Estimate")
. Example: c("Title", "LL", "AIC", "CFI")
A vector of character strings indicating which columns/variables to omit from the summary. Any column not included in this list will be displayed. By default, dropCols
is NULL
. Example: c("InputInstructions", "TLI")
optional. Field name (as character string) by which to sort the table. Typically an information criterion (e.g., "AIC" or "BIC") is used to sort the table. Defaults to NULL
, which does not sort the table.
optional. This parameter specifies whether to display the table in a web browser upon creation (TRUE
or FALSE
).
No value is returned by this function. It is solely used to create an HTML file containing summary statistics.
NoteYou must choose between keepCols
and dropCols
because it is not sensible to use these together to include and exclude columns. The function will error if you include both parameters.
extractModelSummaries
, showSummaryTable
, LatexSummaryTable
Michael Hallquist
Examples# make me!!!
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4