Related link :
Factor Analysis Explanation Page
Factor Analysis - Principal Component Extraction Program Page
Introduction
Tables of Minimum Eigen Values
Computer Program,
References
Introduction
Technical Considerations
Example
Parallel Analysis is a procedure sometimes used to determine the number of
Factors or Principal Components to retain in the initial stage of Exploratory Factor Analysis.
This discussion assumes that the user understands Factor Analysis and the
procedure of Principal Component extraction, and no details for these are provided here.
A critical decision in Exploratory Factor Analysis is to determine how many Principal
Components to retain, as each extraction produces decreasingly significant Factors.
Retaining too few leads to a loss of information in the data, and retaining too many
includes trivial and random information. Both of these produce misleading and unreproducible results.
Traditionally, researchers depend on one or more of the following criteria to
determine how many components to retain.
- The most common, and the default criteria in most statistical packages
is the K1 rule. Principal Components are retained while the Eigen Value
(the Variance associated with the component), is >=1. This is based on
the argument that, in a correlation matrix, each variable contribute a
variance of 1, so a component that accounts for less than that has no meaning and should
be discarded. The criticism to the K1 rule is that the Eigen values are inflated by random associations
in the data, so that the use of the K1 rule often retains more components or factors than appropriate,
particularly when the sample size is small.
- Another rule is using the Scree Test. The Eigen values are plotting against
component number, and when the sharp decrease in Eigen values level off (the scree),
the remaining components are abandoned. This is based on the arguments that the initial and
significant components each extracts a large proportion of the variance from the correlation matrix,
while the insignificant ones contain mostly data noise and so their Eigen values are similar. The criticism
of using the Scree Test is that it depends on eye balling when there is no sharp transition where the scree begins.
Thus researchers often disagree where the scree begins.
- Some researchers tried different retention levels, and match the results with
the theoretical model of the data. This does produce neat outcomes, but
runs the risk that, if the underlying theory is flawed to start with, then the results tend not to be reproducible.
Parallel Analysis takes a different approach, and is based on the Monte Carlo simulation.
A data set of random numbers, but having the same sample size and number of variables as the user's
research data, are subjected to analysis, and the Eigen values obtained are recorded. This is repeated
many times (often between 50 and 100 iterations, and the tables later on this page used 1000 iterations).
The mean and Standard Deviation of the replicated Eigen values for each component are then calculate, from which
the 95th percentile value is obtained (95th percentile = mean + 1.65SD). These form
the standard against which the Eigen value of each component from the research data is compared, and a components
is retained if its Eigen value exceeds the 95th percentile of the simulated values. The argument being
that a component should be retained if its Eigen value is clearly greater (at 95th percentile) than that
obtained at random.
Monte Carlo simulation models the statistical process, but uses randomly generated numbers. The
calculations are replicated numerous time to produce a standard based on random numbers, against which
research data and results can be compared.
For an adequate simulation, numerous iterations may be necessary. When the calculations involve iterations
and matrix manipulations, the memory requirement and computing time may exceed that allowable from a server.
For example, a parallel analysis for 40 variables, a sample size of more than 50, and attempting 50 replication,
will exceed the 30 seconds of computing time usually allowable by a php server, causing the program to crash.
Resources for Parallel Analysis on this page therefore exists in two forms. These are :
- Tables of critical Eigen values for Factor Analysis of 4 to 100 variables, over a range of commonly used sample
sizes, and obtained over 1000 replications of simulation for each.
- A small Javascript program to carry out a specific Parallel Analysis, if requirements are not met by the tables.
The algorithm used for resources on this page is from that published in Numerical Recipes for Pascal,
translated to Javascript. Please note that, as with any Monte Carlo simulation, each run uses different sets
of random numbers, so the results are closely similar but not the same. Users should therefore not be alarmed
by minor differences in the output.
Simulations on this page use computer generated random numbers that are normally distributed, with mean of 0 and SD of 1.
Although this is usually acceptable, and the results differ little from any other methods of generating random numbers,
it is different to the strict requirements of Parallel Analysis.
- Strictly, each variable in the simulation should mimic the real data. Normally distributed random numbers
should only be used for those variables that are normally distributed. For measurements such as Likert Scale,
the random number should be integers randomised to values between 1 and 5 without a defined distribution. For
binary variables (female/male, alive/dead, no/yes), the number should be randomised between 0 and 1.
- To comply with the strict requirements of Parallel Analysis therefore, the random dataset needs to be customised
to the nature of each of the variables in the research data. To use normally distributed random numbers for all variables, such as
that in the programs of this page, the user needs to accept the argument that the difference thus created will be
trivial and unlikely to affect the decision on how many components to retain. Users should be aware that this
argument is accepted by many, but not all, amongst those who are authoritative in these matters.
There are many papers discussing Parallel Analysis and some free software that are available on the www.
I have put links to two downloadable software in the reference section for users who wish to have a desk top
programs for this. I have neither downloaded nor evaluate these programs myself, so the user should evaluate these
packages for himself/herself.
The tables and programs on this page are for Principal Components only, where the diagonals of the correlation matrix
are all 1s, and not Principal Factor Analysis, where the diagonals of the correlation matrix is replaced with estimates
of communalities. The results are not appropriate for the latter model.
Eventually, there will be an one stop shop where Factor Analysis and Parallel Analysis are carried out
as a single procedure. At the time of writing however, most existing software for Factor Analysis use the K1 rule,
or user defined number of components, to decide how many components to retain. Parallel Analysis is therefore
still an add on, and must be separately calculated.
This section will therefore take the user step by step, using existing software, do combine Parallel Analysis and Factor Analysis.
This consists of the following steps.
- Using the researcher's data, an initial Principal Component Analysis is carried out, but overriding the K1 rule,
so that the number of components retained is the same as the number of variables. This will include
the full array of Eigen values, usually in order of magnitude.
- Either looking up the tables on this page, or using the Javascript program, the standards (minimum Eigen values for
component retention) are determined by Parallel Analysis.
- The Eigen values from the research data are compared with the Standards. The components to retained are those where
the Eigen values from the research data exceeds both 1 (K1 rule), and the standard value from Parallel Analysis.
- The rest of the Factor Analysis is then calculated using only the number of components that are retained. If statistical
packages such as SPSS or SAS is used, the program is configured to extract the appropriate number of components.
Example
The following example demonstrate the procedures. Please note that the numbers presented are computer
generated just to demonstrate the procedures, and not realistic data. A Factor Analysis with 6 variables will need
a sample size much greater than 25 cases to have any reproducibility at all.
1 | 0.6999 | -0.2607 | -0.2708 | 0.3849 | 0.187 |
0.6999 | 1 | -0.1939 | -0.3776 | 0.3786 | -0.0345 |
-0.2607 | -0.1939 | 1 | 0.4968 | -0.0035 | 0.0473 |
-0.2708 | -0.3776 | 0.4968 | 1 | 0.1267 | 0.2787 |
0.3849 | 0.3786 | -0.0035 | 0.1267 | 1 | 0.5658 |
0.187 | -0.0345 | 0.0473 | 0.2787 | 0.5658 | 1 |
We wish to conduct a Factor Analysis on a data set, which has 6 variables, and a sample size of 25.
The correlation matrix for this set of data is as shown in the table to the left.
| F_1 | F_2 | F_3 | F_4 | F_5 | F_6 |
Var_1 | -0.8565 | -0.091 | 0.2055 | 0.3341 | -0.2337 | 0.223 |
Var_2 | -0.8424 | 0.0581 | 0.4236 | -0.0303 | 0.1037 | -0.3096 |
Var_3 | 0.4913 | -0.4569 | 0.6602 | -0.2461 | -0.2244 | 0.0561 |
Var_4 | 0.5156 | -0.6776 | 0.148 | 0.4436 | 0.2248 | -0.0759 |
Var_5 | -0.5451 | -0.6932 | -0.0738 | -0.261 | 0.3456 | 0.1709 |
Var_6 | -0.211 | -0.7911 | -0.436 | -0.0498 | -0.3314 | -0.1655 |
Eigen | 2.2921 | 1.786 | 0.8749 | 0.4404 | 0.3956 | 0.2111 |
Step 1 : Initial extraction of all possible components
The original data or the correlation matrix can be analysed using a commercial package such as SPSS, where the number of
components to be retained is configured to be the same as the number of variables (in this case 6). Alternatively, the analysis can be carried out using the program in the Factor Analysis - Principal Component Extraction Program Page
. The full principal Component table is
as shown to the right.
It can be seen that the Eigen values, in order of scale, are 2.29,1.79,0.87,0.44,0.40,and 0.21. According to the
K1 rule, the first 2 components (Eigen value >1) would be retained. According the Scree Test, perhaps the
first 3 components would be retained.
| Monte Carlo | Research |
| Mean | SD | 95thpercentile | Data |
F_1 | 1.7249 | 0.1755 | 2.0145 | 2.2921 |
F_2 | 1.349 | 0.1206 | 1.548 | 1.786 |
F_3 | 1.0675 | 0.0936 | 1.2219 | 0.8749 |
F_4 | 0.8405 | 0.0823 | 0.9763 | 0.4404 |
F_5 | 0.605 | 0.0899 | 0.7534 | 0.3956 |
F_6 | 0.4132 | 0.0982 | 0.5751 | 0.2111 |
Step 2 : Parallel Analysis
The parameter for this example are number of variables=6, and sample size=25, the same as that
from the research data. As an example, we will carry out 100 simulations, and produce as results the first
4 columns of the tables to the left. The fifth column contains the Eigen values from the research data.
Step 3 : Comparison of research data and simulation
The figure to the right demonstrate the various methods of decision making.
The black horizontal line represents the K1 rule, the blue line 95th percentile of Eigen values from
simulation, and the red line with dots the Eigen values from the research data.
The Eigen values from the research data are greater than those from simulation in the first two components, indicating that
only the first two components should be retained. In this case (but not always) this agrees with the K1 rule.
The Scree Test would probably retain the first 3 components, unless it is combined with the K1 rule.
. | F_1 | F_2 |
Var_1 | -0.8565 | -0.091 |
Var_2 | -0.8424 | 0.0581 |
Var_3 | 0.4913 | -0.4569 |
Var_4 | 0.5156 | -0.6776 |
Var_5 | -0.5451 | -0.6932 |
Var_6 | -0.211 | -0.7911 |
Eigen | 2.2921 | 1.786 |
Step 4 : Final Factor Analysis
| F_1 | F_2 | Communality |
Var_1 | -0.6978 | -0.5049 | 0.7419 |
Var_2 | -0.7597 | -0.3685 | 0.713 |
Var_3 | 0.6535 | -0.1521 | 0.4501 |
Var_4 | 0.7843 | -0.3315 | 0.725 |
Var_5 | -0.1282 | -0.8725 | 0.7777 |
Var_6 | 0.2104 | -0.7913 | 0.6704 |
Variance | 2.167 | 1.9111 |
Depending on the software used, the final Factor Analysis can now be carried out. In commercial packages such as SPSS,
The analysis is now repeated, but the number of components to be retained is configured to 2. In software such as that provided
in the Factor Analysis - Principal Component Extraction Program Page
, the first two columns of Principal Components can be used for subsequent
rotations. The results would look something like the table to the left.
This can be subjected to rotational and other procedures, such as that shown to the right, where
the two components were subjected to Varimax rotation.
Explanation
4-9 Variables
10-20 Variables
25-50 Variables
60 Variables
70 Variables
80 Variables
90 Variables
100 Variables
The tables show critical Eigen values for retention of a factor. Each table provides values for
Factor Analysis with a particular number of variables. The columns are the sample size of the research data,
and the rows are factor numbers (in order of size). Each cell contains the critical minimum Eigen value, which the
Eigen value of that factor must exceed if it is to be retained. Where there is no value provided, the K1 rule
(Eigen value >=1.0) should be used.
These critical numbers are obtained using data that are normally distributed random numbers to create the
correlation matrix of the appropriate number of variables, and repeated 1000 iterations. The numbers represents the
95th percentile of the Eigen values so obtained for each factor.
The tables contains only those Eigen values that are >1, as factors with Eigen values of less than 1 are usually not retained.
SSiz | 20 | 40 | 60 | 80 | 100 | 150 | 200 | 300 | 400 | 500 |
Number of variables = 4 |
f1 | 1.81 | 1.58 | 1.46 | 1.39 | 1.36 | 1.29 | 1.25 | 1.20 | 1.17 | 1.16 |
f2 | 1.30 | 1.21 | 1.17 | 1.15 | 1.14 | 1.11 | 1.10 | 1.08 | 1.07 | 1.06 |
f3 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
Number of variables = 5 |
f1 | 2.01 | 1.67 | 1.53 | 1.47 | 1.41 | 1.34 | 1.29 | 1.24 | 1.20 | 1.18 |
f2 | 1.47 | 1.32 | 1.26 | 1.23 | 1.20 | 1.17 | 1.15 | 1.12 | 1.10 | 1.09 |
f3 | 1.12 | 1.10 | 1.08 | 1.07 | 1.06 | 1.05 | 1.04 | 1.04 | 1.03 | 1.03 |
Number of variables = 6 |
f1 | 2.14 | 1.78 | 1.63 | 1.54 | 1.47 | 1.38 | 1.33 | 1.27 | 1.23 | 1.20 |
f2 | 1.60 | 1.41 | 1.34 | 1.30 | 1.26 | 1.22 | 1.19 | 1.15 | 1.13 | 1.12 |
f3 | 1.24 | 1.17 | 1.15 | 1.13 | 1.12 | 1.10 | 1.08 | 1.07 | 1.06 | 1.05 |
f4 | 0.98 | 1.00 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
Number of variables = 7 |
f1 | 2.3 | 1.88 | 1.70 | 1.6 | 1.53 | 1.43 | 1.37 | 1.3 | 1.25 | 1.22 |
f2 | 1.72 | 1.51 | 1.42 | 1.35 | 1.32 | 1.26 | 1.23 | 1.18 | 1.16 | 1.14 |
f3 | 1.36 | 1.26 | 1.22 | 1.19 | 1.17 | 1.14 | 1.12 | 1.10 | 1.09 | 1.08 |
f4 | 1.09 | 1.08 | 1.07 | 1.06 | 1.06 | 1.05 | 1.05 | 1.04 | 1.03 | 1.03 |
Number of variables = 8 |
f1 | 2.46 | 1.96 | 1.77 | 1.66 | 1.58 | 1.47 | 1.41 | 1.33 | 1.28 | 1.25 |
f2 | 1.87 | 1.59 | 1.48 | 1.41 | 1.37 | 1.30 | 1.26 | 1.21 | 1.18 | 1.16 |
f3 | 1.47 | 1.35 | 1.29 | 1.25 | 1.22 | 1.18 | 1.16 | 1.13 | 1.11 | 1.10 |
f4 | 1.18 | 1.15 | 1.13 | 1.11 | 1.10 | 1.09 | 1.08 | 1.06 | 1.05 | 1.05 |
f5 | . | . | . | . | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
Number of variables = 9 |
f1 | 2.59 | 2.06 | 1.83 | 1.7 | 1.64 | 1.51 | 1.43 | 1.35 | 1.3 | 1.27 |
f2 | 1.97 | 1.67 | 1.54 | 1.47 | 1.42 | 1.34 | 1.29 | 1.23 | 1.2 | 1.18 |
f3 | 1.59 | 1.42 | 1.34 | 1.30 | 1.27 | 1.22 | 1.19 | 1.16 | 1.13 | 1.12 |
f4 | 1.29 | 1.22 | 1.19 | 1.17 | 1.15 | 1.13 | 1.11 | 1.09 | 1.08 | 1.07 |
f5 | 1.05 | 1.05 | 1.06 | 1.05 | 1.05 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 |
SSiz | 50 | 75 | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 |
Number of variables = 10 |
f1 | 1.99 | 1.79 | 1.68 | 1.46 | 1.38 | 1.32 | 1.29 | 1.26 | 1.23 | 1.20 |
f2 | 1.66 | 1.53 | 1.47 | 1.32 | 1.26 | 1.22 | 1.20 | 1.18 | 1.16 | 1.14 |
f3 | 1.44 | 1.37 | 1.32 | 1.22 | 1.18 | 1.16 | 1.14 | 1.13 | 1.11 | 1.10 |
f4 | 1.26 | 1.22 | 1.19 | 1.14 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 | 1.06 |
f5 | 1.11 | 1.10 | 1.09 | 1.07 | 1.06 | 1.05 | 1.04 | 1.04 | 1.04 | 1.03 |
. | . | . | . | . | . | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
Number of variables = 12 |
f1 | 2.13 | 1.90 | 1.76 | 1.52 | 1.42 | 1.36 | 1.32 | 1.29 | 1.25 | 1.22 |
f2 | 1.79 | 1.64 | 1.55 | 1.38 | 1.30 | 1.26 | 1.23 | 1.22 | 1.18 | 1.17 |
f3 | 1.57 | 1.46 | 1.40 | 1.28 | 1.23 | 1.20 | 1.18 | 1.16 | 1.14 | 1.12 |
f4 | 1.38 | 1.32 | 1.28 | 1.20 | 1.16 | 1.14 | 1.13 | 1.12 | 1.10 | 1.09 |
f5 | 1.23 | 1.20 | 1.17 | 1.13 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 |
f6 | 1.09 | 1.08 | 1.08 | 1.06 | 1.05 | 1.05 | 1.04 | 1.04 | 1.03 | 1.03 |
SSiz | 50 | 75 | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 |
Number of variables = 14 |
f1 | 2.25 | 2.00 | 1.85 | 1.57 | 1.46 | 1.39 | 1.35 | 1.32 | 1.27 | 1.24 |
f2 | 1.91 | 1.73 | 1.62 | 1.43 | 1.34 | 1.30 | 1.26 | 1.24 | 1.21 | 1.19 |
f3 | 1.67 | 1.55 | 1.47 | 1.33 | 1.27 | 1.24 | 1.21 | 1.19 | 1.16 | 1.15 |
f4 | 1.49 | 1.40 | 1.35 | 1.25 | 1.20 | 1.18 | 1.16 | 1.15 | 1.13 | 1.11 |
f5 | 1.34 | 1.28 | 1.25 | 1.18 | 1.15 | 1.13 | 1.12 | 1.11 | 1.09 | 1.08 |
f6 | 1.20 | 1.17 | 1.15 | 1.12 | 1.10 | 1.08 | 1.08 | 1.07 | 1.06 | 1.06 |
f7 | 1.07 | 1.07 | 1.07 | 1.06 | 1.05 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 |
Number of variables = 16 |
f1 | 2.38 | 2.07 | 1.91 | 1.62 | 1.50 | 1.42 | 1.38 | 1.34 | 1.30 | 1.26 |
f2 | 2.03 | 1.81 | 1.69 | 1.48 | 1.39 | 1.33 | 1.29 | 1.27 | 1.23 | 1.20 |
f3 | 1.79 | 1.63 | 1.54 | 1.38 | 1.31 | 1.27 | 1.24 | 1.22 | 1.19 | 1.17 |
f4 | 1.60 | 1.49 | 1.42 | 1.30 | 1.24 | 1.21 | 1.19 | 1.17 | 1.15 | 1.13 |
f5 | 1.44 | 1.36 | 1.32 | 1.23 | 1.19 | 1.16 | 1.15 | 1.13 | 1.12 | 1.10 |
f6 | 1.30 | 1.25 | 1.23 | 1.16 | 1.14 | 1.12 | 1.11 | 1.10 | 1.08 | 1.08 |
f7 | 1.17 | 1.15 | 1.14 | 1.11 | 1.09 | 1.08 | 1.07 | 1.07 | 1.06 | 1.05 |
f8 | 1.05 | 1.05 | 1.06 | 1.05 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 |
SSiz | 50 | 75 | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 |
Number of variables = 18 |
f1 | 2.49 | 2.17 | 1.99 | 1.67 | 1.53 | 1.46 | 1.40 | 1.36 | 1.31 | 1.28 |
f2 | 2.14 | 1.90 | 1.77 | 1.52 | 1.42 | 1.36 | 1.32 | 1.29 | 1.25 | 1.22 |
f3 | 1.88 | 1.71 | 1.61 | 1.43 | 1.34 | 1.30 | 1.27 | 1.24 | 1.21 | 1.19 |
f4 | 1.70 | 1.57 | 1.49 | 1.34 | 1.28 | 1.24 | 1.22 | 1.20 | 1.17 | 1.15 |
f5 | 1.53 | 1.44 | 1.38 | 1.27 | 1.23 | 1.19 | 1.18 | 1.16 | 1.14 | 1.12 |
f6 | 1.39 | 1.33 | 1.29 | 1.21 | 1.17 | 1.15 | 1.14 | 1.12 | 1.11 | 1.10 |
f7 | 1.26 | 1.23 | 1.20 | 1.15 | 1.13 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 |
f8 | 1.14 | 1.13 | 1.12 | 1.10 | 1.08 | 1.07 | 1.06 | 1.06 | 1.05 | 1.05 |
f9 | 1.03 | 1.04 | 1.05 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 | 1.03 | 1.02 |
Number of variables = 20 |
f1 | 2.59 | 2.24 | 2.06 | 1.72 | 1.57 | 1.49 | 1.43 | 1.39 | 1.33 | 1.30 |
f2 | 2.24 | 1.98 | 1.83 | 1.57 | 1.46 | 1.39 | 1.35 | 1.32 | 1.27 | 1.24 |
f3 | 1.99 | 1.79 | 1.68 | 1.47 | 1.38 | 1.33 | 1.29 | 1.27 | 1.23 | 1.21 |
f4 | 1.80 | 1.65 | 1.56 | 1.39 | 1.32 | 1.27 | 1.25 | 1.23 | 1.19 | 1.17 |
f5 | 1.63 | 1.52 | 1.45 | 1.32 | 1.26 | 1.23 | 1.20 | 1.19 | 1.16 | 1.14 |
f6 | 1.48 | 1.40 | 1.35 | 1.26 | 1.21 | 1.18 | 1.16 | 1.15 | 1.13 | 1.12 |
f7 | 1.35 | 1.30 | 1.27 | 1.20 | 1.16 | 1.14 | 1.13 | 1.12 | 1.10 | 1.09 |
f8 | 1.23 | 1.20 | 1.19 | 1.14 | 1.12 | 1.10 | 1.09 | 1.09 | 1.08 | 1.07 |
f9 | 1.12 | 1.12 | 1.11 | 1.08 | 1.07 | 1.07 | 1.06 | 1.06 | 1.05 | 1.05 |
f10 | 1.01 | 1.03 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.02 |
SSiz | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 | 1500 | 2000 |
Number of variables = 25 |
f1 | 2.22 | 1.82 | 1.65 | 1.56 | 1.49 | 1.44 | 1.38 | 1.34 | 1.27 | 1.23 |
f2 | 2.00 | 1.67 | 1.54 | 1.46 | 1.41 | 1.37 | 1.32 | 1.28 | 1.23 | 1.20 |
f3 | 1.84 | 1.57 | 1.46 | 1.40 | 1.35 | 1.32 | 1.28 | 1.25 | 1.20 | 1.17 |
f4 | 1.71 | 1.49 | 1.40 | 1.34 | 1.30 | 1.28 | 1.24 | 1.22 | 1.17 | 1.15 |
f5 | 1.60 | 1.42 | 1.34 | 1.30 | 1.26 | 1.24 | 1.21 | 1.19 | 1.15 | 1.13 |
f6 | 1.50 | 1.36 | 1.29 | 1.25 | 1.22 | 1.20 | 1.18 | 1.16 | 1.13 | 1.11 |
f7 | 1.41 | 1.30 | 1.24 | 1.21 | 1.19 | 1.17 | 1.15 | 1.13 | 1.11 | 1.10 |
f8 | 1.32 | 1.24 | 1.20 | 1.17 | 1.16 | 1.14 | 1.13 | 1.11 | 1.09 | 1.08 |
f9 | 1.24 | 1.19 | 1.16 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 |
f10 | 1.17 | 1.14 | 1.12 | 1.10 | 1.09 | 1.09 | 1.08 | 1.07 | 1.06 | 1.05 |
f11 | 1.11 | 1.09 | 1.08 | 1.07 | 1.07 | 1.06 | 1.06 | 1.05 | 1.04 | 1.04 |
f12 | 1.04 | 1.05 | 1.04 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 | 1.02 |
SSiz | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 | 1500 | 2000 |
Number of variables = 30 |
f1 | 2.37 | 1.91 | 1.73 | 1.62 | 1.55 | 1.49 | 1.42 | 1.38 | 1.30 | 1.26 |
f2 | 2.14 | 1.77 | 1.61 | 1.52 | 1.47 | 1.42 | 1.36 | 1.32 | 1.26 | 1.22 |
f3 | 1.98 | 1.67 | 1.54 | 1.46 | 1.41 | 1.37 | 1.32 | 1.28 | 1.23 | 1.20 |
f4 | 1.85 | 1.59 | 1.47 | 1.41 | 1.36 | 1.33 | 1.28 | 1.25 | 1.20 | 1.18 |
f5 | 1.73 | 1.51 | 1.42 | 1.36 | 1.32 | 1.29 | 1.25 | 1.22 | 1.18 | 1.16 |
f6 | 1.64 | 1.45 | 1.37 | 1.32 | 1.28 | 1.26 | 1.22 | 1.20 | 1.16 | 1.14 |
f7 | 1.54 | 1.39 | 1.32 | 1.28 | 1.25 | 1.23 | 1.20 | 1.17 | 1.14 | 1.12 |
f8 | 1.46 | 1.33 | 1.28 | 1.24 | 1.21 | 1.20 | 1.17 | 1.15 | 1.12 | 1.11 |
f9 | 1.38 | 1.28 | 1.23 | 1.20 | 1.18 | 1.17 | 1.14 | 1.13 | 1.11 | 1.09 |
f10 | 1.31 | 1.23 | 1.19 | 1.17 | 1.15 | 1.14 | 1.12 | 1.11 | 1.09 | 1.08 |
f11 | 1.24 | 1.18 | 1.15 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.07 | 1.07 |
f12 | 1.17 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 | 1.06 | 1.05 |
f13 | 1.11 | 1.10 | 1.08 | 1.08 | 1.07 | 1.06 | 1.06 | 1.05 | 1.04 | 1.04 |
f14 | 1.05 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 |
f15 | . | 1.01 | 1.01 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.01 | 1.01 |
SSiz | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 | 1500 | 2000 |
Number of variables = 35 |
f1 | 2.51 | 2.00 | 1.79 | 1.67 | 1.60 | 1.54 | 1.46 | 1.41 | 1.33 | 1.28 |
f2 | 2.27 | 1.85 | 1.68 | 1.58 | 1.52 | 1.46 | 1.40 | 1.35 | 1.29 | 1.25 |
f3 | 2.12 | 1.76 | 1.60 | 1.52 | 1.46 | 1.41 | 1.36 | 1.32 | 1.26 | 1.22 |
f4 | 1.98 | 1.67 | 1.54 | 1.46 | 1.41 | 1.38 | 1.32 | 1.29 | 1.23 | 1.20 |
f5 | 1.87 | 1.60 | 1.48 | 1.42 | 1.37 | 1.34 | 1.29 | 1.26 | 1.21 | 1.18 |
f6 | 1.77 | 1.53 | 1.43 | 1.37 | 1.33 | 1.30 | 1.26 | 1.23 | 1.19 | 1.16 |
f7 | 1.67 | 1.47 | 1.39 | 1.33 | 1.30 | 1.27 | 1.23 | 1.21 | 1.17 | 1.15 |
f8 | 1.59 | 1.42 | 1.34 | 1.30 | 1.26 | 1.24 | 1.21 | 1.19 | 1.15 | 1.13 |
f9 | 1.51 | 1.37 | 1.30 | 1.26 | 1.23 | 1.21 | 1.19 | 1.17 | 1.14 | 1.12 |
f10 | 1.43 | 1.32 | 1.26 | 1.23 | 1.20 | 1.19 | 1.16 | 1.15 | 1.12 | 1.10 |
f11 | 1.36 | 1.27 | 1.22 | 1.20 | 1.18 | 1.16 | 1.14 | 1.13 | 1.10 | 1.09 |
f12 | 1.29 | 1.22 | 1.19 | 1.17 | 1.15 | 1.14 | 1.12 | 1.11 | 1.09 | 1.08 |
f13 | 1.23 | 1.18 | 1.15 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 |
f14 | 1.16 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 | 1.06 | 1.05 |
f15 | 1.10 | 1.10 | 1.08 | 1.08 | 1.07 | 1.07 | 1.06 | 1.05 | 1.05 | 1.04 |
f16 | 1.04 | 1.06 | 1.05 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 | 1.03 | 1.03 |
f17 | . | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 |
SSiz | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 | 1500 | 2000 |
Number of variables = 40 |
f1 | 2.65 | 2.09 | 1.86 | 1.73 | 1.64 | 1.58 | 1.50 | 1.44 | 1.35 | 1.30 |
f2 | 2.41 | 1.94 | 1.75 | 1.64 | 1.56 | 1.51 | 1.44 | 1.39 | 1.31 | 1.27 |
f3 | 2.24 | 1.84 | 1.67 | 1.57 | 1.51 | 1.46 | 1.39 | 1.35 | 1.28 | 1.24 |
f4 | 2.11 | 1.75 | 1.60 | 1.52 | 1.46 | 1.42 | 1.36 | 1.32 | 1.26 | 1.22 |
f5 | 1.99 | 1.68 | 1.55 | 1.47 | 1.42 | 1.38 | 1.33 | 1.29 | 1.24 | 1.20 |
f6 | 1.89 | 1.62 | 1.50 | 1.43 | 1.38 | 1.35 | 1.30 | 1.27 | 1.22 | 1.19 |
f7 | 1.80 | 1.56 | 1.45 | 1.39 | 1.35 | 1.32 | 1.27 | 1.24 | 1.20 | 1.17 |
f8 | 1.71 | 1.50 | 1.41 | 1.35 | 1.32 | 1.29 | 1.25 | 1.22 | 1.18 | 1.16 |
f9 | 1.62 | 1.45 | 1.36 | 1.32 | 1.28 | 1.26 | 1.23 | 1.20 | 1.16 | 1.14 |
f10 | 1.54 | 1.40 | 1.32 | 1.28 | 1.25 | 1.23 | 1.20 | 1.18 | 1.15 | 1.13 |
f11 | 1.47 | 1.35 | 1.29 | 1.25 | 1.23 | 1.21 | 1.18 | 1.16 | 1.13 | 1.12 |
f12 | 1.40 | 1.30 | 1.25 | 1.22 | 1.20 | 1.18 | 1.16 | 1.14 | 1.12 | 1.10 |
f13 | 1.33 | 1.26 | 1.22 | 1.19 | 1.17 | 1.16 | 1.14 | 1.13 | 1.10 | 1.09 |
f14 | 1.27 | 1.21 | 1.18 | 1.16 | 1.15 | 1.14 | 1.12 | 1.11 | 1.09 | 1.08 |
f15 | 1.21 | 1.17 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 |
f16 | 1.16 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 | 1.06 | 1.05 |
f17 | 1.10 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 | 1.06 | 1.05 | 1.04 |
f18 | 1.05 | 1.06 | 1.06 | 1.05 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 | 1.03 |
f19 | . | 1.02 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.02 | 1.02 |
f20 | . | . | 1.00 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
SSiz | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 | 1500 | 2000 |
Number of variables = 45 |
f1 | 2.78 | 2.17 | 1.92 | 1.78 | 1.69 | 1.62 | 1.53 | 1.47 | 1.38 | 1.32 |
f2 | 2.53 | 2.02 | 1.81 | 1.69 | 1.61 | 1.55 | 1.47 | 1.42 | 1.34 | 1.29 |
f3 | 2.36 | 1.91 | 1.73 | 1.62 | 1.55 | 1.50 | 1.43 | 1.38 | 1.31 | 1.26 |
f4 | 2.23 | 1.83 | 1.67 | 1.57 | 1.51 | 1.46 | 1.39 | 1.35 | 1.28 | 1.24 |
f5 | 2.11 | 1.76 | 1.61 | 1.52 | 1.46 | 1.42 | 1.36 | 1.32 | 1.26 | 1.23 |
f6 | 2.01 | 1.69 | 1.56 | 1.48 | 1.43 | 1.39 | 1.34 | 1.30 | 1.24 | 1.21 |
f7 | 1.91 | 1.63 | 1.51 | 1.44 | 1.39 | 1.36 | 1.31 | 1.27 | 1.22 | 1.19 |
f8 | 1.82 | 1.57 | 1.47 | 1.40 | 1.36 | 1.33 | 1.28 | 1.25 | 1.21 | 1.18 |
f9 | 1.73 | 1.52 | 1.42 | 1.37 | 1.33 | 1.30 | 1.26 | 1.23 | 1.19 | 1.16 |
f10 | 1.66 | 1.47 | 1.38 | 1.33 | 1.30 | 1.27 | 1.24 | 1.21 | 1.17 | 1.15 |
f11 | 1.58 | 1.42 | 1.35 | 1.30 | 1.27 | 1.25 | 1.22 | 1.19 | 1.16 | 1.14 |
f12 | 1.52 | 1.38 | 1.31 | 1.27 | 1.25 | 1.22 | 1.20 | 1.17 | 1.14 | 1.13 |
f13 | 1.45 | 1.33 | 1.28 | 1.25 | 1.22 | 1.20 | 1.18 | 1.16 | 1.13 | 1.11 |
f14 | 1.38 | 1.29 | 1.24 | 1.22 | 1.20 | 1.18 | 1.16 | 1.14 | 1.12 | 1.10 |
f15 | 1.32 | 1.25 | 1.21 | 1.19 | 1.17 | 1.16 | 1.14 | 1.12 | 1.10 | 1.09 |
f16 | 1.26 | 1.21 | 1.18 | 1.16 | 1.14 | 1.13 | 1.12 | 1.11 | 1.09 | 1.08 |
f17 | 1.20 | 1.17 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 |
f18 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 | 1.06 | 1.06 |
f19 | 1.09 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.07 | 1.06 | 1.05 | 1.04 |
f20 | 1.05 | 1.06 | 1.06 | 1.06 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 | 1.03 |
f21 | . | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.02 |
f22 | . | . | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
SSiz | 100 | 200 | 300 | 400 | 500 | 600 | 800 | 1000 | 1500 | 2000 |
Number of variables = 50 |
f1 | 2.91 | 2.24 | 1.99 | 1.83 | 1.73 | 1.66 | 1.56 | 1.50 | 1.40 | 1.34 |
f2 | 2.65 | 2.10 | 1.87 | 1.74 | 1.65 | 1.59 | 1.50 | 1.45 | 1.36 | 1.31 |
f3 | 2.49 | 1.99 | 1.79 | 1.67 | 1.60 | 1.54 | 1.46 | 1.41 | 1.33 | 1.28 |
f4 | 2.35 | 1.91 | 1.72 | 1.62 | 1.55 | 1.50 | 1.43 | 1.38 | 1.31 | 1.26 |
f5 | 2.22 | 1.84 | 1.67 | 1.57 | 1.51 | 1.46 | 1.39 | 1.35 | 1.28 | 1.25 |
f6 | 2.12 | 1.77 | 1.62 | 1.53 | 1.47 | 1.43 | 1.37 | 1.33 | 1.26 | 1.23 |
f7 | 2.02 | 1.71 | 1.57 | 1.49 | 1.44 | 1.40 | 1.34 | 1.30 | 1.25 | 1.21 |
f8 | 1.93 | 1.65 | 1.53 | 1.45 | 1.40 | 1.37 | 1.32 | 1.28 | 1.23 | 1.20 |
f9 | 1.84 | 1.59 | 1.48 | 1.42 | 1.37 | 1.34 | 1.29 | 1.26 | 1.21 | 1.18 |
f10 | 1.76 | 1.54 | 1.44 | 1.38 | 1.34 | 1.31 | 1.27 | 1.24 | 1.20 | 1.17 |
f11 | 1.69 | 1.49 | 1.41 | 1.35 | 1.32 | 1.29 | 1.25 | 1.22 | 1.18 | 1.16 |
f12 | 1.62 | 1.45 | 1.37 | 1.32 | 1.29 | 1.26 | 1.23 | 1.21 | 1.17 | 1.15 |
f13 | 1.55 | 1.40 | 1.33 | 1.29 | 1.26 | 1.24 | 1.21 | 1.19 | 1.15 | 1.13 |
f14 | 1.48 | 1.36 | 1.30 | 1.26 | 1.24 | 1.22 | 1.19 | 1.17 | 1.14 | 1.12 |
f15 | 1.42 | 1.32 | 1.27 | 1.24 | 1.21 | 1.20 | 1.17 | 1.15 | 1.13 | 1.11 |
f16 | 1.36 | 1.28 | 1.24 | 1.21 | 1.19 | 1.18 | 1.15 | 1.14 | 1.11 | 1.10 |
f17 | 1.30 | 1.24 | 1.20 | 1.18 | 1.17 | 1.16 | 1.13 | 1.12 | 1.10 | 1.09 |
f18 | 1.24 | 1.20 | 1.18 | 1.16 | 1.14 | 1.13 | 1.12 | 1.11 | 1.09 | 1.08 |
f19 | 1.19 | 1.17 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.07 |
f20 | 1.14 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.08 | 1.06 | 1.06 |
f21 | 1.09 | 1.09 | 1.09 | 1.09 | 1.08 | 1.07 | 1.07 | 1.06 | 1.05 | 1.05 |
f22 | 1.04 | 1.06 | 1.06 | 1.06 | 1.06 | 1.06 | 1.05 | 1.05 | 1.04 | 1.04 |
f23 | . | 1.03 | 1.04 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 | 1.03 |
f24 | . | . | 1.01 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 |
f25 | . | . | . | . | . | . | . | . | 1.01 | 1.01 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
Number of variables = 60 |
f1 | 2.22 | 1.81 | 1.65 | 1.55 | 1.49 | 1.44 | 1.40 | 1.38 | 1.30 | 1.26 |
f2 | 2.09 | 1.73 | 1.59 | 1.50 | 1.44 | 1.40 | 1.37 | 1.34 | 1.28 | 1.24 |
f3 | 2.00 | 1.68 | 1.54 | 1.46 | 1.41 | 1.37 | 1.34 | 1.32 | 1.26 | 1.22 |
f4 | 1.93 | 1.63 | 1.51 | 1.43 | 1.38 | 1.35 | 1.32 | 1.30 | 1.24 | 1.21 |
f5 | 1.86 | 1.59 | 1.47 | 1.40 | 1.36 | 1.33 | 1.30 | 1.28 | 1.23 | 1.20 |
f6 | 1.80 | 1.55 | 1.44 | 1.38 | 1.34 | 1.31 | 1.29 | 1.27 | 1.22 | 1.19 |
f7 | 1.75 | 1.52 | 1.42 | 1.36 | 1.32 | 1.29 | 1.27 | 1.25 | 1.20 | 1.18 |
f8 | 1.70 | 1.49 | 1.39 | 1.34 | 1.30 | 1.27 | 1.25 | 1.24 | 1.19 | 1.17 |
f9 | 1.65 | 1.46 | 1.37 | 1.32 | 1.28 | 1.26 | 1.24 | 1.22 | 1.18 | 1.16 |
f10 | 1.61 | 1.43 | 1.35 | 1.30 | 1.27 | 1.24 | 1.22 | 1.21 | 1.17 | 1.15 |
f11 | 1.57 | 1.40 | 1.32 | 1.28 | 1.25 | 1.23 | 1.21 | 1.20 | 1.16 | 1.14 |
f12 | 1.52 | 1.37 | 1.30 | 1.26 | 1.23 | 1.21 | 1.20 | 1.19 | 1.15 | 1.13 |
f13 | 1.48 | 1.34 | 1.28 | 1.25 | 1.22 | 1.20 | 1.19 | 1.17 | 1.14 | 1.12 |
f14 | 1.45 | 1.32 | 1.26 | 1.23 | 1.20 | 1.19 | 1.17 | 1.16 | 1.13 | 1.11 |
f15 | 1.41 | 1.30 | 1.24 | 1.21 | 1.19 | 1.17 | 1.16 | 1.15 | 1.12 | 1.11 |
f16 | 1.37 | 1.27 | 1.22 | 1.20 | 1.18 | 1.16 | 1.15 | 1.14 | 1.11 | 1.10 |
f17 | 1.34 | 1.25 | 1.21 | 1.18 | 1.16 | 1.15 | 1.14 | 1.13 | 1.11 | 1.09 |
f18 | 1.31 | 1.23 | 1.19 | 1.17 | 1.15 | 1.14 | 1.13 | 1.12 | 1.10 | 1.09 |
f19 | 1.27 | 1.20 | 1.17 | 1.15 | 1.13 | 1.12 | 1.12 | 1.11 | 1.09 | 1.08 |
f20 | 1.24 | 1.18 | 1.15 | 1.14 | 1.12 | 1.11 | 1.10 | 1.10 | 1.08 | 1.07 |
f21 | 1.21 | 1.16 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.09 | 1.07 | 1.06 |
f22 | 1.18 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 |
f23 | 1.15 | 1.12 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.07 | 1.06 | 1.05 |
f24 | 1.12 | 1.10 | 1.09 | 1.08 | 1.07 | 1.07 | 1.06 | 1.06 | 1.05 | 1.04 |
f25 | 1.09 | 1.08 | 1.07 | 1.06 | 1.06 | 1.06 | 1.05 | 1.05 | 1.04 | 1.04 |
f26 | 1.07 | 1.06 | 1.06 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 | 1.03 | 1.03 |
f27 | 1.04 | 1.04 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 | 1.03 | 1.02 |
f28 | 1.01 | 1.02 | 1.03 | 1.03 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 |
f29 | . | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
Number of variables = 70 |
f1 | 2.35 | 1.89 | 1.71 | 1.60 | 1.53 | 1.48 | 1.44 | 1.41 | 1.33 | 1.28 |
f2 | 2.21 | 1.81 | 1.64 | 1.55 | 1.49 | 1.44 | 1.40 | 1.38 | 1.30 | 1.26 |
f3 | 2.12 | 1.75 | 1.60 | 1.51 | 1.46 | 1.41 | 1.38 | 1.35 | 1.28 | 1.24 |
f4 | 2.04 | 1.71 | 1.56 | 1.48 | 1.43 | 1.39 | 1.36 | 1.33 | 1.27 | 1.23 |
f5 | 1.98 | 1.67 | 1.53 | 1.46 | 1.41 | 1.37 | 1.34 | 1.32 | 1.26 | 1.22 |
f6 | 1.92 | 1.63 | 1.50 | 1.43 | 1.38 | 1.35 | 1.32 | 1.30 | 1.24 | 1.21 |
f7 | 1.86 | 1.59 | 1.48 | 1.41 | 1.36 | 1.33 | 1.31 | 1.29 | 1.23 | 1.20 |
f8 | 1.81 | 1.56 | 1.45 | 1.39 | 1.35 | 1.32 | 1.29 | 1.27 | 1.22 | 1.19 |
f9 | 1.76 | 1.53 | 1.43 | 1.37 | 1.33 | 1.30 | 1.28 | 1.26 | 1.21 | 1.18 |
f10 | 1.72 | 1.50 | 1.41 | 1.35 | 1.31 | 1.28 | 1.26 | 1.24 | 1.20 | 1.17 |
f11 | 1.67 | 1.47 | 1.38 | 1.33 | 1.30 | 1.27 | 1.25 | 1.23 | 1.19 | 1.16 |
f12 | 1.63 | 1.45 | 1.36 | 1.31 | 1.28 | 1.26 | 1.24 | 1.22 | 1.18 | 1.16 |
f13 | 1.60 | 1.42 | 1.34 | 1.30 | 1.26 | 1.24 | 1.22 | 1.21 | 1.17 | 1.15 |
f14 | 1.56 | 1.40 | 1.32 | 1.28 | 1.25 | 1.23 | 1.21 | 1.20 | 1.16 | 1.14 |
f15 | 1.52 | 1.37 | 1.30 | 1.26 | 1.24 | 1.22 | 1.20 | 1.19 | 1.15 | 1.13 |
f16 | 1.48 | 1.35 | 1.29 | 1.25 | 1.22 | 1.20 | 1.19 | 1.18 | 1.14 | 1.13 |
f17 | 1.45 | 1.32 | 1.27 | 1.23 | 1.21 | 1.19 | 1.18 | 1.17 | 1.14 | 1.12 |
f18 | 1.42 | 1.30 | 1.25 | 1.22 | 1.19 | 1.18 | 1.17 | 1.16 | 1.13 | 1.11 |
f19 | 1.38 | 1.28 | 1.23 | 1.20 | 1.18 | 1.17 | 1.15 | 1.15 | 1.12 | 1.10 |
f20 | 1.35 | 1.26 | 1.22 | 1.19 | 1.17 | 1.16 | 1.14 | 1.14 | 1.11 | 1.10 |
f21 | 1.32 | 1.24 | 1.20 | 1.17 | 1.16 | 1.14 | 1.13 | 1.13 | 1.10 | 1.09 |
f22 | 1.29 | 1.22 | 1.18 | 1.16 | 1.14 | 1.13 | 1.12 | 1.12 | 1.10 | 1.08 |
f23 | 1.26 | 1.20 | 1.17 | 1.15 | 1.13 | 1.12 | 1.11 | 1.11 | 1.09 | 1.08 |
f24 | 1.23 | 1.18 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.10 | 1.08 | 1.07 |
f25 | 1.20 | 1.16 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.09 | 1.07 | 1.06 |
f26 | 1.17 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 |
f27 | 1.15 | 1.12 | 1.10 | 1.09 | 1.09 | 1.08 | 1.07 | 1.07 | 1.06 | 1.05 |
f28 | 1.12 | 1.10 | 1.09 | 1.08 | 1.07 | 1.07 | 1.07 | 1.06 | 1.05 | 1.05 |
f29 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 | 1.06 | 1.06 | 1.05 | 1.04 | 1.04 |
f30 | 1.07 | 1.07 | 1.06 | 1.06 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 | 1.03 |
f31 | 1.04 | 1.05 | 1.05 | 1.04 | 1.04 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 |
f32 | 1.02 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.02 | 1.02 |
f33 | . | 1.01 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 |
f34 | . | . | . | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
Number of variables = 80 |
f1 | 2.45 | 1.96 | 1.76 | 1.65 | 1.57 | 1.52 | 1.48 | 1.44 | 1.35 | 1.30 |
f2 | 2.32 | 1.88 | 1.70 | 1.60 | 1.53 | 1.48 | 1.44 | 1.41 | 1.33 | 1.28 |
f3 | 2.23 | 1.82 | 1.66 | 1.56 | 1.50 | 1.45 | 1.41 | 1.39 | 1.31 | 1.27 |
f4 | 2.15 | 1.78 | 1.62 | 1.53 | 1.47 | 1.43 | 1.39 | 1.37 | 1.29 | 1.25 |
f5 | 2.09 | 1.74 | 1.59 | 1.50 | 1.45 | 1.40 | 1.37 | 1.35 | 1.28 | 1.24 |
f6 | 2.03 | 1.70 | 1.56 | 1.48 | 1.43 | 1.39 | 1.36 | 1.33 | 1.27 | 1.23 |
f7 | 1.97 | 1.66 | 1.53 | 1.46 | 1.41 | 1.37 | 1.34 | 1.32 | 1.26 | 1.22 |
f8 | 1.92 | 1.63 | 1.51 | 1.44 | 1.39 | 1.35 | 1.33 | 1.30 | 1.25 | 1.21 |
f9 | 1.87 | 1.60 | 1.49 | 1.42 | 1.37 | 1.34 | 1.31 | 1.29 | 1.23 | 1.20 |
f10 | 1.83 | 1.57 | 1.46 | 1.40 | 1.35 | 1.32 | 1.30 | 1.28 | 1.23 | 1.19 |
f11 | 1.78 | 1.54 | 1.44 | 1.38 | 1.34 | 1.31 | 1.28 | 1.27 | 1.22 | 1.19 |
f12 | 1.74 | 1.52 | 1.42 | 1.36 | 1.32 | 1.29 | 1.27 | 1.25 | 1.21 | 1.18 |
f13 | 1.70 | 1.49 | 1.40 | 1.34 | 1.31 | 1.28 | 1.26 | 1.24 | 1.20 | 1.17 |
f14 | 1.66 | 1.47 | 1.38 | 1.33 | 1.29 | 1.27 | 1.25 | 1.23 | 1.19 | 1.16 |
f15 | 1.62 | 1.44 | 1.36 | 1.31 | 1.28 | 1.25 | 1.24 | 1.22 | 1.18 | 1.16 |
f16 | 1.59 | 1.42 | 1.34 | 1.30 | 1.27 | 1.24 | 1.22 | 1.21 | 1.17 | 1.15 |
f17 | 1.55 | 1.40 | 1.32 | 1.28 | 1.25 | 1.23 | 1.21 | 1.20 | 1.16 | 1.14 |
f18 | 1.52 | 1.37 | 1.31 | 1.27 | 1.24 | 1.22 | 1.20 | 1.19 | 1.15 | 1.13 |
f19 | 1.48 | 1.35 | 1.29 | 1.25 | 1.23 | 1.21 | 1.19 | 1.18 | 1.15 | 1.13 |
f20 | 1.45 | 1.33 | 1.27 | 1.24 | 1.21 | 1.20 | 1.18 | 1.17 | 1.14 | 1.12 |
f21 | 1.42 | 1.31 | 1.26 | 1.22 | 1.20 | 1.18 | 1.17 | 1.16 | 1.13 | 1.11 |
f22 | 1.39 | 1.29 | 1.24 | 1.21 | 1.19 | 1.17 | 1.16 | 1.15 | 1.12 | 1.11 |
f23 | 1.36 | 1.27 | 1.22 | 1.20 | 1.18 | 1.16 | 1.15 | 1.14 | 1.12 | 1.10 |
f24 | 1.33 | 1.25 | 1.21 | 1.18 | 1.17 | 1.15 | 1.14 | 1.13 | 1.11 | 1.10 |
f25 | 1.30 | 1.23 | 1.19 | 1.17 | 1.15 | 1.14 | 1.13 | 1.12 | 1.10 | 1.09 |
f26 | 1.27 | 1.21 | 1.18 | 1.16 | 1.14 | 1.13 | 1.12 | 1.11 | 1.09 | 1.08 |
f27 | 1.25 | 1.19 | 1.16 | 1.14 | 1.13 | 1.12 | 1.11 | 1.11 | 1.09 | 1.08 |
f28 | 1.22 | 1.17 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.10 | 1.08 | 1.07 |
f29 | 1.19 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.09 | 1.07 | 1.06 |
f30 | 1.17 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 |
f31 | 1.14 | 1.12 | 1.10 | 1.09 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 | 1.05 |
f32 | 1.11 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.07 | 1.06 | 1.05 | 1.05 |
f33 | 1.09 | 1.09 | 1.08 | 1.07 | 1.07 | 1.06 | 1.06 | 1.05 | 1.05 | 1.04 |
f34 | 1.07 | 1.07 | 1.06 | 1.06 | 1.06 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 |
f35 | 1.04 | 1.05 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 |
f36 | 1.02 | 1.04 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 | 1.03 | 1.02 |
f37 | . | 1.02 | 1.02 | 1.02 | 1.03 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 |
f38 | . | . | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
f39 | . | . | . | . | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
Number of variables = 90 |
f1 | 2.56 | 2.03 | 1.82 | 1.69 | 1.61 | 1.55 | 1.51 | 1.47 | 1.38 | 1.32 |
f2 | 2.43 | 1.95 | 1.76 | 1.64 | 1.57 | 1.51 | 1.47 | 1.44 | 1.35 | 1.30 |
f3 | 2.34 | 1.89 | 1.71 | 1.61 | 1.54 | 1.48 | 1.44 | 1.41 | 1.33 | 1.29 |
f4 | 2.26 | 1.84 | 1.67 | 1.58 | 1.51 | 1.46 | 1.42 | 1.39 | 1.32 | 1.27 |
f5 | 2.19 | 1.80 | 1.64 | 1.55 | 1.49 | 1.44 | 1.41 | 1.38 | 1.31 | 1.26 |
f6 | 2.13 | 1.77 | 1.61 | 1.52 | 1.47 | 1.42 | 1.39 | 1.36 | 1.29 | 1.25 |
f7 | 2.08 | 1.73 | 1.59 | 1.50 | 1.45 | 1.40 | 1.37 | 1.35 | 1.28 | 1.24 |
f8 | 2.03 | 1.70 | 1.56 | 1.48 | 1.43 | 1.39 | 1.36 | 1.33 | 1.27 | 1.23 |
f9 | 1.98 | 1.67 | 1.54 | 1.46 | 1.41 | 1.37 | 1.34 | 1.32 | 1.26 | 1.22 |
f10 | 1.93 | 1.64 | 1.51 | 1.44 | 1.39 | 1.36 | 1.33 | 1.31 | 1.25 | 1.22 |
f11 | 1.89 | 1.61 | 1.49 | 1.42 | 1.38 | 1.34 | 1.32 | 1.30 | 1.24 | 1.21 |
f12 | 1.84 | 1.59 | 1.47 | 1.41 | 1.36 | 1.33 | 1.30 | 1.28 | 1.23 | 1.20 |
f13 | 1.80 | 1.56 | 1.45 | 1.39 | 1.35 | 1.32 | 1.29 | 1.27 | 1.22 | 1.19 |
f14 | 1.76 | 1.53 | 1.43 | 1.37 | 1.33 | 1.30 | 1.28 | 1.26 | 1.21 | 1.18 |
f15 | 1.72 | 1.51 | 1.41 | 1.36 | 1.32 | 1.29 | 1.27 | 1.25 | 1.20 | 1.18 |
f16 | 1.69 | 1.49 | 1.40 | 1.34 | 1.31 | 1.28 | 1.26 | 1.24 | 1.20 | 1.17 |
f17 | 1.65 | 1.46 | 1.38 | 1.33 | 1.29 | 1.27 | 1.25 | 1.23 | 1.19 | 1.16 |
f18 | 1.62 | 1.44 | 1.36 | 1.31 | 1.28 | 1.25 | 1.24 | 1.22 | 1.18 | 1.16 |
f19 | 1.58 | 1.42 | 1.34 | 1.30 | 1.27 | 1.24 | 1.23 | 1.21 | 1.17 | 1.15 |
f20 | 1.55 | 1.40 | 1.33 | 1.28 | 1.25 | 1.23 | 1.21 | 1.20 | 1.16 | 1.14 |
f21 | 1.52 | 1.37 | 1.31 | 1.27 | 1.24 | 1.22 | 1.20 | 1.19 | 1.16 | 1.14 |
f22 | 1.49 | 1.35 | 1.29 | 1.26 | 1.23 | 1.21 | 1.19 | 1.18 | 1.15 | 1.13 |
f23 | 1.46 | 1.33 | 1.28 | 1.24 | 1.22 | 1.20 | 1.19 | 1.17 | 1.14 | 1.12 |
f24 | 1.43 | 1.32 | 1.26 | 1.23 | 1.21 | 1.19 | 1.18 | 1.17 | 1.14 | 1.12 |
f25 | 1.40 | 1.30 | 1.25 | 1.22 | 1.19 | 1.18 | 1.17 | 1.16 | 1.13 | 1.11 |
f26 | 1.37 | 1.28 | 1.23 | 1.20 | 1.18 | 1.17 | 1.16 | 1.15 | 1.12 | 1.11 |
f27 | 1.34 | 1.26 | 1.22 | 1.19 | 1.17 | 1.16 | 1.15 | 1.14 | 1.11 | 1.10 |
f28 | 1.31 | 1.24 | 1.20 | 1.18 | 1.16 | 1.15 | 1.14 | 1.13 | 1.11 | 1.09 |
f29 | 1.29 | 1.22 | 1.19 | 1.17 | 1.15 | 1.14 | 1.13 | 1.12 | 1.10 | 1.09 |
f30 | 1.26 | 1.20 | 1.17 | 1.15 | 1.14 | 1.13 | 1.12 | 1.11 | 1.09 | 1.08 |
f31 | 1.23 | 1.19 | 1.16 | 1.14 | 1.13 | 1.12 | 1.11 | 1.11 | 1.09 | 1.08 |
f32 | 1.21 | 1.17 | 1.14 | 1.13 | 1.12 | 1.11 | 1.10 | 1.10 | 1.08 | 1.07 |
f33 | 1.18 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.09 | 1.07 | 1.07 |
f34 | 1.16 | 1.14 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 |
f35 | 1.13 | 1.12 | 1.11 | 1.09 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 | 1.05 |
f36 | 1.11 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.07 | 1.06 | 1.06 | 1.05 |
f37 | 1.09 | 1.09 | 1.08 | 1.07 | 1.07 | 1.06 | 1.06 | 1.06 | 1.05 | 1.04 |
f38 | 1.06 | 1.07 | 1.07 | 1.06 | 1.06 | 1.06 | 1.05 | 1.05 | 1.04 | 1.04 |
f39 | 1.04 | 1.05 | 1.05 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 | 1.04 | 1.03 |
f40 | 1.02 | 1.04 | 1.04 | 1.04 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 | 1.03 |
f41 | . | 1.02 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.02 | 1.02 |
f42 | . | 1.01 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 |
f43 | . | . | . | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
f44 | . | . | . | . | . | . | . | . | 1.01 | 1.01 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
Number of variables = 100 |
f1 | 2.67 | 2.10 | 1.87 | 1.74 | 1.65 | 1.59 | 1.54 | 1.50 | 1.40 | 1.34 |
f2 | 2.53 | 2.02 | 1.81 | 1.68 | 1.61 | 1.55 | 1.50 | 1.47 | 1.37 | 1.32 |
f3 | 2.44 | 1.96 | 1.76 | 1.65 | 1.57 | 1.52 | 1.48 | 1.44 | 1.36 | 1.31 |
f4 | 2.36 | 1.91 | 1.73 | 1.62 | 1.55 | 1.50 | 1.46 | 1.42 | 1.34 | 1.29 |
f5 | 2.29 | 1.87 | 1.69 | 1.59 | 1.52 | 1.47 | 1.44 | 1.41 | 1.33 | 1.28 |
f6 | 2.23 | 1.83 | 1.66 | 1.57 | 1.50 | 1.46 | 1.42 | 1.39 | 1.32 | 1.27 |
f7 | 2.18 | 1.80 | 1.64 | 1.55 | 1.48 | 1.44 | 1.40 | 1.38 | 1.30 | 1.26 |
f8 | 2.13 | 1.76 | 1.61 | 1.52 | 1.47 | 1.42 | 1.39 | 1.36 | 1.29 | 1.25 |
f9 | 2.08 | 1.73 | 1.59 | 1.50 | 1.45 | 1.41 | 1.38 | 1.35 | 1.28 | 1.24 |
f10 | 2.03 | 1.70 | 1.57 | 1.49 | 1.43 | 1.39 | 1.36 | 1.34 | 1.27 | 1.24 |
f11 | 1.98 | 1.68 | 1.54 | 1.47 | 1.42 | 1.38 | 1.35 | 1.33 | 1.26 | 1.23 |
f12 | 1.94 | 1.65 | 1.52 | 1.45 | 1.40 | 1.36 | 1.34 | 1.31 | 1.25 | 1.22 |
f13 | 1.90 | 1.62 | 1.50 | 1.43 | 1.39 | 1.35 | 1.32 | 1.30 | 1.25 | 1.21 |
f14 | 1.86 | 1.60 | 1.48 | 1.42 | 1.37 | 1.34 | 1.31 | 1.29 | 1.24 | 1.20 |
f15 | 1.82 | 1.57 | 1.47 | 1.40 | 1.36 | 1.33 | 1.30 | 1.28 | 1.23 | 1.20 |
f16 | 1.78 | 1.55 | 1.45 | 1.39 | 1.34 | 1.31 | 1.29 | 1.27 | 1.22 | 1.19 |
f17 | 1.75 | 1.53 | 1.43 | 1.37 | 1.33 | 1.30 | 1.28 | 1.26 | 1.21 | 1.18 |
f18 | 1.71 | 1.50 | 1.41 | 1.36 | 1.32 | 1.29 | 1.27 | 1.25 | 1.20 | 1.18 |
f19 | 1.68 | 1.48 | 1.39 | 1.34 | 1.30 | 1.28 | 1.26 | 1.24 | 1.20 | 1.17 |
f20 | 1.65 | 1.46 | 1.38 | 1.33 | 1.29 | 1.27 | 1.25 | 1.23 | 1.19 | 1.16 |
f21 | 1.61 | 1.44 | 1.36 | 1.31 | 1.28 | 1.26 | 1.24 | 1.22 | 1.18 | 1.16 |
f22 | 1.58 | 1.42 | 1.34 | 1.30 | 1.27 | 1.25 | 1.23 | 1.21 | 1.17 | 1.15 |
f23 | 1.55 | 1.40 | 1.33 | 1.29 | 1.26 | 1.23 | 1.22 | 1.20 | 1.17 | 1.15 |
f24 | 1.52 | 1.38 | 1.31 | 1.27 | 1.24 | 1.22 | 1.21 | 1.19 | 1.16 | 1.14 |
f25 | 1.49 | 1.36 | 1.30 | 1.26 | 1.23 | 1.21 | 1.20 | 1.19 | 1.15 | 1.13 |
f26 | 1.46 | 1.34 | 1.28 | 1.25 | 1.22 | 1.20 | 1.19 | 1.18 | 1.15 | 1.13 |
f27 | 1.43 | 1.32 | 1.27 | 1.23 | 1.21 | 1.19 | 1.18 | 1.17 | 1.14 | 1.12 |
f28 | 1.40 | 1.30 | 1.25 | 1.22 | 1.20 | 1.18 | 1.17 | 1.16 | 1.13 | 1.12 |
f29 | 1.38 | 1.29 | 1.24 | 1.21 | 1.19 | 1.17 | 1.16 | 1.15 | 1.13 | 1.11 |
f30 | 1.35 | 1.27 | 1.22 | 1.20 | 1.18 | 1.16 | 1.15 | 1.14 | 1.12 | 1.10 |
f31 | 1.32 | 1.25 | 1.21 | 1.19 | 1.17 | 1.16 | 1.15 | 1.14 | 1.11 | 1.10 |
f32 | 1.30 | 1.23 | 1.20 | 1.17 | 1.16 | 1.15 | 1.14 | 1.13 | 1.11 | 1.09 |
f33 | 1.27 | 1.22 | 1.18 | 1.16 | 1.15 | 1.14 | 1.13 | 1.12 | 1.10 | 1.09 |
f34 | 1.25 | 1.20 | 1.17 | 1.15 | 1.14 | 1.13 | 1.12 | 1.11 | 1.09 | 1.08 |
f35 | 1.22 | 1.18 | 1.16 | 1.14 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 |
f36 | 1.20 | 1.17 | 1.14 | 1.13 | 1.12 | 1.11 | 1.10 | 1.10 | 1.08 | 1.07 |
f37 | 1.17 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.09 | 1.07 | 1.07 |
f38 | 1.15 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.09 | 1.08 | 1.07 | 1.06 |
f39 | 1.13 | 1.12 | 1.11 | 1.10 | 1.09 | 1.08 | 1.08 | 1.07 | 1.06 | 1.06 |
f40 | 1.11 | 1.10 | 1.09 | 1.09 | 1.08 | 1.07 | 1.07 | 1.07 | 1.06 | 1.05 |
f41 | 1.08 | 1.09 | 1.08 | 1.07 | 1.07 | 1.07 | 1.06 | 1.06 | 1.05 | 1.05 |
f42 | 1.06 | 1.07 | 1.07 | 1.06 | 1.06 | 1.06 | 1.05 | 1.05 | 1.04 | 1.04 |
f43 | 1.04 | 1.06 | 1.06 | 1.05 | 1.05 | 1.05 | 1.05 | 1.04 | 1.04 | 1.03 |
f44 | 1.02 | 1.04 | 1.04 | 1.04 | 1.04 | 1.04 | 1.04 | 1.04 | 1.03 | 1.03 |
f45 | . | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.03 | 1.02 |
f46 | . | 1.01 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 |
f47 | . | . | 1.01 | 1.01 | 1.02 | 1.02 | 1.02 | 1.02 | 1.02 | 1.01 |
f48 | . | . | . | . | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 | 1.01 |
SSiz | 250 | 500 | 750 | 1000 | 1250 | 1500 | 1750 | 2000 | 3000 | 4000 |
Three parameters are necessary for Parallel Analysis, the number of variables involved, and the sample size of the research data
the results will be used to compare with. Finally the number of replications.
The number of iterations will determine the stability of the results. Generally, decisions are made using Eigen values to
2 decimal places, and to be stable at this level, about 500 replications are needed.
Most of the results are background. The results used for comparison with Eigen values from research data are
those in the last column, the 95 percentile values.
There is no constraints on the size of the data, as most lap tops will have sufficient memory to cope with matrices of
more than 100 variables.
However, there are constraints related to time required for computation. The more commonly used browsers
(Explorer, Firefox) imposes limits, either in the number of calculations, or amounts of time. When the limit is reached,
the browser ask the user whether he/she wishes to continue. This means, with prolonged computation, the user cannot
leave the computer to do other things, but needs to nurse the program to its conclusions. For example, the Firefox
browser will pause and ask users whether to continue every 10 seconds of computing, and sometimes this becomes tedious
when computation may require several minutes.
Hayton JC, Allen DG and Scarpello V (2004)Factor Retention Decisions in Exploratory
Factor Analysis: a Tutorial on Parallel Analysis. Organizational Research Methods 2004; 7; 191
Watkins MW (2006)Determining Parallel Analysis Criteria.
Journal of Modern Applied Statistical Methods Vol. 5, No. 2, 344-346
Free program to do Parallel Analysis from someone else downloadable from WWW
Ledesma RD (2007)Determining the Number of Factors to Retain in EFA: an easy-to-use
computer program for carrying out Parallel Analysis. Practical Assessment, Research, and
Evaluation Volume 12, Number 2, p. 1-11 Accesible on www.
Word file with SPSS commands for Parallel Analysis
Press WH, Flannery VP, Teukolsky SA, Vetterling WT (1989). Numerical Recipes in Pascal.
Cambridge University Press IBSN 0-521-37516-9 p.395-396 and p.402-404. (computer program to
extract Eigen Values and Vectors from a correlation matrix using the Jacobi algorithm).
|