我正在使用spss代码。我想将由spss计算的RXX结果打印到控制台(输出文件)。有没有可能的方法来做到这一点?
代码如下所示:
COMPUTE R = CR. /* CR is default name of matrix */
COMPUTE N = NCOL(R). /* Number of variables */
COMPUTE RXX = R(2:N,2:N). /* Correlations between the X’s */
COMPUTE RXY = R(2:N,1). /* Correlations between Y and the X’s */
CALL EIGEN(RXX,EVEC,EV). /* Begin singular value decomposition */
COMPUTE D = MDIAG(EV). /* Diagonal matrix of eigenvalues */
COMPUTE DELTA = SQRT(D). /* Square root of eigenvalues */
任何帮助将不胜感激。
答案 0 :(得分:3)
如果这在matrix - end matrix
序列内,则可以在矩阵语法中使用PRINT
命令。例如:
print RXX /TITLE="these are my RXX results:".