Displaying 20 results from an estimated 100 matches similar to: "bug in promax?"
2003 May 01
0
factanal
# I have a question about how factanal is calculating the regression factor
# scores based on an oblique rotation (promax) of the factors.
#
# As is explained in the help file, regression factor scores are
# obtained as
#
# hat f = Lambda' Sigma^-1 x
#
# However, according to Harman's "Modern Factor Analysis" (e.g. second
# edition, pp. 351-352) the formula is
#
# hat f = Phi
2009 Aug 17
1
lm.fit algo
Hi, everyone,
This is a little silly, but I cant figure out the algorithm behind
lm.fit function used in the context of promax rotation algorithm:
The promax function is:
promax <- function(x, m = 4)
{
if(ncol(x) < 2) return(x)
dn <- dimnames(x)
xx <- varimax(x)
x <- xx$loadings
Q <- x * abs(x)^(m-1)
U <- lm.fit(x, Q)$coefficients
d <-
2008 Sep 09
1
Addendum to wishlist bug report #10931 (factanal) (PR#12754)
--=-hiYzUeWcRJ/+kx41aPIZ
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 8bit
Hi,
on March 10 I filed a wishlist bug report asking for the inclusion of
some changes to factanal() and the associated print method. The changes
were originally proposed by John Fox in 2005; they make print.factanal()
display factor correlations if factanal() is called with rotation =
2005 Jun 26
0
Factor correlations in factanal
Dear R-devel list members,
Ben Fairbank draw it to my attention that factanal() (in the stats package)
doesn't report factor correlations for oblique rotations. Looking at the
source, I see that factanal also doesn't save the factor-transformation
(rotation) matrix from which these correlations can be computed. I've
modified the source, attached below, so that the transformation
2002 Mar 16
1
promax (PR#1389)
Full_Name: conor dolan
Version: 1.4.0
OS: windows98
Submission from: (NULL) (146.50.170.247)
On the basis of Lawley and Maxwell's explanation in Factor Analysis as a
Statistical Method (London: Butterworth, 1971), the following line in the promax
routine (library, mva):
attr(z, "covariance") <- crossprod(U)
should be
attr(z, "covariance") <- solve(crossprod(U))
2005 Jun 20
1
Factanal loadings as large as 1.2 with promax -- how unusual?
I am performing a large (105 variable) factor analysis with factanal,
specifying promax rotation. I kow that some loadings over 1.0 are not
unsual with that rotation, but I have some as large as 1.2, which seems
extreme. I am skirting the assumptions of the model by using responses
on a 7-point rating scale as data; I may have to go back and compute
polychoric correlations instead of product
1998 Nov 25
1
varimax and promax rotation
Hi:
How i can make Varimax and Promax Rotation in R 0.63
thanks
Jorge M. A. Magalhães
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request at
2006 May 19
1
factor analysis - discrepancy in results from R vs. Stata
Hi,
I found a discrepancy between results in R and Stata for a factor analysis
with a promax rotation. For Stata:
. *rotate, factor(2) promax*
(promax rotation)
Rotated Factor Loadings
Variable | 1 2 Uniqueness
-------------+--------------------------------
pfq_amanag~y | -0.17802 0.64161 0.70698
pfq_bwalk_~ø | 0.72569 0.05570
2005 Feb 08
1
link to an alias in another package
In some documentation for a package I am working on I have
> \code{\link[stats]{varimax}}
> \code{\link[stats]{promax}}
The link to varimax works, but not the one to promax. Promax is an alias
under \name{varimax}. This kind of link works within a package, but I'm
not sure if it is suppose to work when it is a link to another package.
Is this a known limitation or bug, or
2007 Mar 04
1
factor analysis and pattern matrix
Hi,
In a discussion of factor analysis in "Using Multivariate Statistics" by
Tabachnick and Fidell, two matrices are singled out as important for
interpreting an exploratory factor analysis (EFA) with an oblique promax
rotation. One is the "structure matrix". The structure matrix contains the
correlations between variables and factors. However, these correlations may
be
2003 Feb 27
0
spatial evolution and variance after rotation of Principal components
Dear R users,
I have been doing rotation on Principal components analyse, with varimax
function and promax. Following those changes, I cannot find now how to get
the spatial evolution and the variance. Indeed, with the function princomp
that has been used to get the principal components, arguments such as $scores
and $sdev were available to get the spatial evolution and the variance, with
2003 Mar 12
0
temporal evolution and variance after rotation of eof
Dear R users,
I have been doing some eof analysis using princomp function, then the eof
results were rotated with varimax and promax functions. Those functions are
working fine. However, after their uses, I cannot find how to obtain the
temporal evolution and the variance of the obtain components, as varimax and
promax does not have the arguments $scores and $sdev.
If any body, know how to
2013 Dec 17
1
Polychoric Principal Component Analysis (pPCA)
I have data set with binary responses. I would like to
conduct polychoric principal component analysis (pPCA). I know there are several packages used in PCA but I could not find one that directly estimate pPCA and graph the individuals and variables maps. I will appreciate any help that expand these reproducible scripts.
#How to conduct polychoric principal component analysis pPCA using
#either
2011 Jun 22
1
Factor Analysis with orthogonal and oblique rotation
Hello
I seem to find only two types of rotation for the factanal function in R, the Varimax and Promax, but is it possible to run a orthogonal and oblique rotations in R?
Thanks in advance
Rosario
2017 Nov 29
1
Admins supporting both RHEL and CentOS
Le 29/11/2017 ? 08:26, Sorin Srbu a ?crit?:
> If updated, the instrument software will break, like in an atomic mushroom
> cloud, rendering critical hardware non-working and lab people standing
> outside my office with torches, pitch-forks and all the shebang.
> Yupp, unfortunately that's the current state of some lab equipment
> manufacturers that use RHEL as a base...
2005 Oct 13
2
varimax rotation difference between R and SPSS
Hi,
I am puzzeled with a differing result of princomp in R and FACTOR in
SPSS. Regarding the amount of explained Variance, the two results are
the same. However, the loadings differ substantially, in the unrotated
as well as in the rotated form.
In both cases correlation matrices are analyzed. The sums of the squared
components is one in both programs.
Maybe there is an obvious reason, but I
2004 Nov 03
2
Princomp(), prcomp() and loadings()
In comparing the results of princomp and prcomp I find:
1. The reported standard deviations are similar but about 1% from
each other, which seems well above round-off error.
2. princomp returns what I understand are variances and cumulative
variances accounted for by each principal component which are
all equal. "SS loadings" is always 1.
3. Same happens
2007 May 13
1
factanal
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt.
Name: nicht verf?gbar
URL: https://stat.ethz.ch/pipermail/r-help/attachments/20070513/f07553e9/attachment.pl
2004 Aug 26
0
[Bug 1670] New: softlink can't be excluded
https://bugzilla.samba.org/show_bug.cgi?id=1670
Summary: softlink can't be excluded
Product: rsync
Version: 2.6.3
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P3
Component: core
AssignedTo: wayned@samba.org
ReportedBy: johndhendrickson22124@yahoo.com
2002 May 17
1
update wrong date, soft links, Debian stable, -L, ...
Debian r2.5 (Potato)
rsync version 2.3.2 protocol version 21
( the latest stable deb version anyway :)
RE: absolutely older file keeps getting chosen for update
Hi.
I have something like:
rsync -vxuaz /sendmail/ /mnt/nfs-mount/sendmail
In the nfs drive the files are links to other files in a
subdirectory of that same directory. Both the links and the files they
point