title "Data Matrix of Kinzer & Kinzer, see GUTTMAN (1957)";
3
_type_ = 'corr';
4
INPUT _name_ $ var1-var6;
5
DATALINES;
6
var1 1.00 . . . . .
7
var2 .511.00 . . . .
8
var3 .46 .511.00 . . .
9
var4 .46 .47 .541.00 . .
10
var5 .40 .39 .49 .571.00 .
11
var6 .33 .39 .47 .45 .561.00
12
;
2 Code Block
PROC CALIS
Explanation : Execution of the CALIS procedure with the COSAN statement. Definition of the model structure, parameter matrices (B, Psi, D) and application of specific mathematical constraints on the coefficients via standard SAS code within the procedure.
/* SAS Programming Statements to Define Dependent Parameters*/
15
/* 6 constraints on the factor loadings */
16
b12 = alpha - b11;
17
b22 = alpha - b21;
18
b32 = alpha - b31;
19
b42 = alpha - b41;
20
b52 = alpha - b51;
21
b62 = alpha - b61;
22
23
/* 6 Constraints on Correlation structures */
24
psi1 = 1. - b11 * b11 - b12 * b12;
25
psi2 = 1. - b21 * b21 - b22 * b22;
26
psi3 = 1. - b31 * b31 - b32 * b32;
27
psi4 = 1. - b41 * b41 - b42 * b42;
28
psi5 = 1. - b51 * b51 - b52 * b52;
29
psi6 = 1. - b61 * b61 - b62 * b62;
30
vnames
31
D = [var1-var6],
32
B = [factor1 factor2],
33
Psi = D;
34
RUN;
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.
Copyright Info : SAS SAMPLE LIBRARY
Related Documentation
Aucune documentation spécifique pour cette catégorie.
SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. ® indicates USA registration. WeAreCAS is an independent community site and is not affiliated with SAS Institute Inc.
This site uses technical and analytical cookies to improve your experience.
Read more.