我想合并不同的SPSS文件。 PAID表示不同的人。这些文件还包含指示测量时刻的变量ID。因此ID = 1意味着数据是测量结果(ID = 2;测量2等)。但是,并非所有数据文件都包含相同的测量时刻。
我已阅读以下帖子,但这还没有完全回答我的问题: SPSS - merging files with duplicate cases of ID variable and new cases/variables
示例数据文件
数据文件1:
PAID ID X1 X2 X3 X4
1 1 3 4 4 5
2 1 3 4 5 6
3 1 3 4 4 6
4 1 . . . .
数据文件2:
PAID ID X5 X6 X7
1 1 1 1 2
1 2 1 2 1
2 1 1 2 2
2 2 2 2 2
3 1 1 1 1
3 2 1 . .
4 1 1 1 1
4 2 2 2 2
我想要以下结果:
PAID ID X1 X2 X3 X4 X5 X6 X7
1 1 3 4 4 5 1 1 2
1 2 . . . . 1 2 1
2 1 3 4 5 6 1 2 2
2 2 . . . . 2 2 2
3 1 3 4 4 6 1 1 1
3 2 . . . . 1 . .
4 1 . . . . 1 1 1
4 2 . . . . 2 2 2
我想我必须使用一些组合的函数添加案例和添加变量。但是,这在SPSS中是否可行?如果是这样,我该怎么做?
提前致谢!
答案 0 :(得分:0)
这将完成这项工作:
match files /file='path\DataFile1.sav' /file='path\DataFile2.sav'/by paid id.
请注意,在运行匹配之前,这两个文件都需要按paid
id
排序。
使用您的样本数据进行演示:
*first preparing demonstration data.
DATA LIST list/paid id x1 to x4 (6f).
begin data.
1,1,3,4,4,5
2,1,3,4,5,6
3,1,3,4,4,6
4,1, , , ,
end data.
* instead of creating the data, you can can get your original data:
* get file="path\file name 1.sav".
sort cases by paid id.
dataset name DataFile1.
DATA LIST list/paid id x5 to x7 (5f).
begin data.
1,1,1,1,2
1,2,1,2,1
2,1,1,2,2
2,2,2,2,2
3,1,1,1,1
3,2,1, ,
4,1,1,1,1
4,2,2,2,2
end data.
sort cases by paid id.
dataset name DataFile2.
match files /file=DataFile1 /file=DataFile2/by paid id.
exe.
结果如下:
paid id x1 x2 x3 x4 x5 x6 x7
1 1 3 4 4 5 1 1 2
1 2 1 2 1
2 1 3 4 5 6 1 2 2
2 2 2 2 2
3 1 3 4 4 6 1 1 1
3 2 1
4 1 1 1 1
4 2 2 2 2