我的研究设计包括三个治疗组(编码为1,2和3)。我做了认知测试(KL_1)和治疗后(KL_2),现在我想计算习惯对比,如果这三组是不同的,是否与其他两组合并。
现在我写了以下语法(紧跟安迪·菲尔德的“使用IBM SPSS统计发现统计”的建议):
MANOVA
KL_1 KL_2 BY Intervention_num (1 3)
/WSFACTORS time (2)
/CONTRAST (time)=special(1 1, 1 -1)
/CONTRAST (Intervention_num) = special(1 1 1, 1 -2 1, -2 1 1, -1 1 0, 0 -1 1, -1 0 1)
/CINTERVAL JOINT (.95) MULTIVARIATE(BONFER)
/METHOD UNIQUE
/ERROR WITHIN+RESIDUAL
/PRINT TRANSFORM HOMOGENEITY (BARTLETT COCHRAN BOXM)
/SIGNIF (UNIV MULT AVERF)
/PARAM (ESTIM EFSIZE).并继续获取以下错误消息:
Note: there are 2 levels for the TIME effect. Average tests are identical to the univariate tests of significance.
>Error # 12027 in column 64. Text: -1
>There are too many elements in the vector or matrix specification.
>Execution of this command stops.
>Error # 12024 in column 64. Text: -1
>The matrix in the CONTRAST subcommand is incorrect.
>Error # 12241 in column 6. Text: SIGNIF
>An illegal subcommand was specified. The valid subcommands are: WSFACTOR,
>TRANSFORM, WSDESIGN, PRINT, NOPRINT, PLOT, MATRIX, MEASURE, METHOD, ANALYSIS,
>PARTITION, CONTRAST, ERROR, MISSING, PMEANS, OMEANS, PCOMP, DISCRIM, RENAME,
>RESIDUALS, POWER, CINTERVAL, and DESIGN.
>Error # 12057 in column 13. Text: ESTIM
>The factor name in PARTITION(factor) is incorrect.老实说,我不知道他们指的是什么,以及如何解决这个问题。有什么想法吗?
干杯,宁克
发布于 2020-07-14 19:34:20
所以有两个问题:
前面出现斜杠。
,
https://stackoverflow.com/questions/62715759
复制相似问题