sklearn’s FactorAnalysis varimax orthogonal rotation increases correlation of factors
Summary The issue at hand is that Scikit-Learn’s FactorAnalysis with varimax orthogonal rotation is resulting in correlated factors, which contradicts the assumption that the factors should be uncorrelated. This is observed in both the provided example and the user’s own dataset. Root Cause The root cause of this issue is due to the following reasons: … Read more