similar to: anacor: yet another ca package

Displaying 20 results from an estimated 1000 matches similar to: "anacor: yet another ca package"

2007 Oct 18
0
homals-0.9.0
homals-0.9.0 is on CRAN -- by Jan de Leeuw and Patrick Mair This package implements the methods discussed in Gifi, Nonlinear Multivariate Analysis, Wiley, 1990. In the Gifi terminology it covers homals, princals, canals, morals, criminals, and overals. The R implementation fills several gaps in Gifi, adding multiple ordinal, numerical, and polynomial data transformations. Differences with
2007 Oct 18
0
homals-0.9.0
homals-0.9.0 is on CRAN -- by Jan de Leeuw and Patrick Mair This package implements the methods discussed in Gifi, Nonlinear Multivariate Analysis, Wiley, 1990. In the Gifi terminology it covers homals, princals, canals, morals, criminals, and overals. The R implementation fills several gaps in Gifi, adding multiple ordinal, numerical, and polynomial data transformations. Differences with
2005 Nov 26
0
correspondence analysis and canonical correspondence analysis in R
http://www.cuddyvalley.org/psychoR/code now contains version 1.4 of ca.R There are already many versions of CA and CCA in various R packages, but this one has some unique features, so maybe it is useful. The function ca() can do simple CA, but it also allows for linear restrictions on the row and column scores (they can be restricted to be in the span of a number of covariates). Thus the
2009 Sep 19
0
homals package and core loop
The homals package http://www.jstatsoft.org/v31/i04 will get a major programming overhaul. This will take some time, but what's a few years on a 40-year project. Suggestions from the audience are welcome. homals() has a core loop over the m variables in which 1. tapply is used to compute category quantification (centroids) 2. category quantifications are then adjusted to satisfy the
2009 Sep 19
0
homals package and core loop
The homals package http://www.jstatsoft.org/v31/i04 will get a major programming overhaul. This will take some time, but what's a few years on a 40-year project. Suggestions from the audience are welcome. homals() has a core loop over the m variables in which 1. tapply is used to compute category quantification (centroids) 2. category quantifications are then adjusted to satisfy the
2005 Nov 06
0
R for Psychometrics
Over the last couple of years I have written quite a few R programs for various "psychometric" techniques, and I am regularly updating and expanding what is there. I now have (wholly or partially), or have planned -- gifi package (update to homals on CRAN). Code for multiple correspondence analysis, nonlinear principal component analysis, nonlinear multiset canonical
2008 Aug 20
1
FYI: APL in R
http://idisk.mac.com/jdeleeuw-Public/utilities/apl/apl.R Dedicated to the IBM 2741. Implemented for general multidimensional arrays: drop, take, reshape, shape, rank, select, generalized inner product, generalized outer product, representation, base value, join, expand, reduce, scan, member of, ravel, compress, tranpose, rotate Basically, the APL-I part is complete, and after some testing
2008 Dec 11
0
Fwd: Jacobi Plane Rotations in R
http://idisk.mac.com/jdeleeuw-Public/jacobi This is paper/software for various techniques based on Jacobi plane rotations. There is R code for -- classical cyclical Jacobi Eigen diagonalization -- Jacobi-based SVD diagonalization -- approximate simultaneous diagonalization of symmetric matrices (De Leeuw/Pruzansky 1978) -- approximate simultaneous diagonalization of rectangular matrices
2008 Jun 05
0
smacof package for multidimensional scaling
Dear UserR's, The smacof package (see also our PsychoR repository on http://r-forge.r-project.org/projects/psychor/) is uploaded on CRAN. This package provides the following approaches of multidimensional scaling (MDS) based on stress minimization by means of majorization (smacof): - Simple smacof on symmetric dissimilarity matrices - smacof for rectangular matrices (unfolding models) -
2009 May 18
3
Runtime Error! Keep on happening while using amap, anacor and ca pckg
Hi there dear R users, Does anyone have any idea what the following error means and how to sort it out? Runtime Error! Program: C\Program Files\R\R-2.9.0\bin\Rgui.exe This application has requested the Runtime to terminate it in an unusual way. Please contact the application’s support team for more information. Here is the story: Running the same code, sometimes the error happens and other
2010 Jul 17
0
package anacor possible for formula lm ?
Dear list I found package anacor very user-friendly but wanted to learn more after reading the publication "a simple..." and its manual. Please kindly help with the following questions and thanks in advance. 1. is it possible to implement lm formula in anacor? 2. is there manual to analyze the sample spider data using anacor ? Elaine [[alternative HTML version
2007 Dec 16
0
not a package (yet): derivatives of generalized eigen/singular pairs
but maybe of use to some: http://gifi.stat.ucla.edu/psychoR/derivatives Computes generalized eigenvalue solutions Ax=\lambda Bx and generalized singular value solutions Rz=\gamma Px and R'x=\gamma Qy for matrices that are differentiable functions of a vector of parameters. Along with the decomposition the code returns arrays with all first-order partial derivatives of the values/vector wrt
2006 Apr 18
0
scalassoc package
Many new things at http://www.cuddyvalley.org/psychoR/ The scalassoc package, which fits exponential distance association models to indicator matrices, it now at version 1.0.0. It seems to be robust and can analyze large examples easily. It is a major improvement (in speed and robustness) over the distassoc package, which is at the same site. scalassoc does something neat (if you like
2011 Jun 06
0
ANACOR coordinates
Dear friends. I am using the anacor command to do a simple correspondence analysis. I got correctly the eingenvalues, the Chi-Square decomposition and the graphics, but I do not know what is the command to "call" the row and column coordinates? Thanks in advance Claudia -- Claudia Isabel RodrĂ­guez Flores [[alternative HTML version deleted]]
2013 Oct 01
0
Question ANACOR-HELP
Dear all, Sorry for bothering you but I am having a doubt for a long time and I cannot find a solution for it. I don't know if you can help me but I am doing a research study on Correspondence Analysis and I have been using the package ANACOR. After performing the Correspondence Analysis, I would like to have the factor loadings associated to the first two components. How can I do it?
2007 Sep 11
1
what am I missing
x<-seq(-1,1,length=10) y<-seq(-1,1,length=10) a<-matrix(c(1,2,2,1),2,2) b<-matrix(c(2,1,1,2),2,2) fv<-function(x,y) { m<-x*a+y*b t<-m[1,1]+m[2,2]; d<-m[1,1]*m[2,2]-m[1,2]^2 return((t-sqrt(t^2-4*d))/2) } gv<-function(x,y) { t<-x*(a[1,1]+a[2,2])+y*(b[1,1]+b[2,2]) d<-(x*a[1,1]+y*b[1,1])*(x*a[2,2]+y*b[2,2])-(x*a[1,2]+y*b[1,2])^2 return((t-sqrt(t^2-4*d))/2) }
2008 Mar 27
1
functions
I wrote some functions for multiway CANDECOMP, i.e. for least squares fitting of a_{i_1\cdots i_m}\approx\sum_{s=1}^p x^1_{i_1s}x^1_{i_1s}\cdots x^m_{i_ms} with arrays of arbitrary dimension. Reminded me of the good old APL days. I could not find this in the archives, but if it's already there, I would appreciate if someone let me know.
2007 Feb 03
1
JSS Volume 18 (www.jstatsoft.org)
Special Volume on Spectroscopy and Chemometrics in R Guest Edited by Katharine M. Mullen and Ivo H.M. van Stokkum 11 contributions, with software packages and examples Similar volumes on R in Psychometrics (guest edited by Jan de Leeuw) and R in Political Methodology (guest edited by Micah Altman and Simon Jackman) are close to being finished. Additional volumes are being worked on. Proposals
2007 Feb 10
1
SAS, SPSS Product Comparison Table
Hi All, My paper "R for SAS and SPSS Users" received a bit more of a reaction than I expected. I posted the link (http://oit.utk.edu/scc/RforSAS&SPSSusers.pdf) about 12 days ago on R-help and the equivalent SAS and SPSS lists. Since then people have downloaded it 5,503 times and I've gotten lots of questions along the lines of, "Surely R can't do for free what [fill in
2017 Aug 17
0
URGENT: Update issues from 3.6.6 to 3.10.2 Accessing files via samba come up with permission denied
Trying to revive this old thread as problems continue. I have noticed from the gluster logs the following on m y volume called export: [2017-08-16 20:08:47.663908] I [MSGID: 109066] [dht-rename.c:1608:dht_rename] 0-export-dht: renaming /projects/ACTIVE/Automotive/JEEP/Brand Image Program June 2016/04_Western Region/Huntington Beach CDJR - Huntington Beach, CA/04 REVIT AND CAD/2017-08-16 CAD dwgs