Skip to content

Commit 273e348

Browse files
committed
Update factor_analysis.R
1 parent 1d47ee0 commit 273e348

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/factor_analysis.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ factor_analysis.data.frame <- function(x,
4343

4444

4545
.is_oblique_rotation <- function(rotation) {
46-
!is.null(rotation) && rotation %in% c("Promax", "promax", "oblimin", "simplimax", "bentlerQ", "geominQ", "biquartimin", "cluster") # nolint
46+
!is.null(rotation) && tolower(rotation) %in% c("promax", "oblimin", "simplimax", "bentlerQ", "geominQ", "biquartimin", "cluster") # nolint
4747
}

0 commit comments

Comments
 (0)