Skip to content

Commit

Permalink
Default plots = TRUE
Browse files Browse the repository at this point in the history
  • Loading branch information
knickodem committed Dec 27, 2023
1 parent 864d6c0 commit a91d785
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/kfa_report.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#' @param word.template character; file path to word document to use as a formatting template when \code{report.format = "word_document"}.
#' @param index character; one or more fit indices to summarize in the report. Use \code{\link[kfa]{index_available}} to see choices.
#' Chi-square value and degrees of freedom are always reported. Default is CFI and RMSEA (naive, scaled, or robust version depends on estimator used in \code{models}).
#' @param plots logical; should plots of the factor models be included in the report?
#' @param plots logical; should plots of the factor models be included in the report? Default is \code{TRUE}.
#' @param load.flag numeric; factor loadings of variables below this value will be flagged. Default is .30
#' @param cor.flag numeric; factor correlations above this value will be flagged. Default is .90
#' @param rel.flag numeric; factor (scale) reliabilities below this value will be flagged. Default is .60.
Expand Down Expand Up @@ -67,7 +67,7 @@ kfa_report <- function(models,
report.format = "html_document",
word.template = NULL,
index = "default",
plots = FALSE,
plots = TRUE,
load.flag = .30, cor.flag = .90, rel.flag = .60,
digits = 2){

Expand Down
4 changes: 2 additions & 2 deletions man/kfa_report.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a91d785

Please sign in to comment.