我是 R 编程语言的新手,但我知道 MCA 背后的理论。我的问题是,我被要求读取包含由数值表示的定性数据的特定文件,例如 C# 中的枚举。另外,我认为我需要将数据作为列联表来调用 MCA 函数(包含在 FactoMineR 包中)。
这是数据:
1;1;1;1;1;3
2;1;1;1;2;2
3;1;1;2;1;3
4;1;1;2;2;1
5;1;2;1;1;3
6;1;2;1;2;2
7;1;2;2;1;3
8;1;2;2;2;1
9;2;1;1;1;3
10;2;1;1;2;2
11;2;1;2;1;3
12;2;1;2;2;1
13;2;2;1;1;3
14;2;2;1;2;2
15;2;2;2;1;3
16;2;2;2;2;3
17;3;1;1;1;3
18;3;1;1;2;3
19;3;1;2;1;3
20;3;1;2;2;1
21;3;2;1;1;3
22;3;2;1;2;2
23;3;2;2;1;3
24;3;2;2;2;3
如您所见,没有列标题,应该删除第一列,因为它仅充当 rowCountIndex。
这是我想获得的列标题(按出现顺序)(第一级)(那些是法语)和行索引(第二级)以及它们引用的键:
"niveau_age"
"young" (1)
"pre-presbyopic" (2)
"presbyopic" (3)
"pathologie"
"myope" (1)
"hypermetrope" (2)
"astigmatisme"
"no" (1)
"yes" (2)
"larmes"
"reduced" (1)
"normal" (2)
"type"
"rigides" (1)
"souples" (2)
"decons" (3)
注意:我尝试以这种方式创建标题(不确定这是否是我应该的方式......):
FRow <- factor(c(1:12), labels=c("young", "pre-presbyopic", "presbyopic", "myope", "hypermetrope", "no", "yes", "reduced", "normal", "rigides", "souples", "deconseillees"))
FCol <- factor(c(1:5), labels=c("niveau_age", "pathologie", "astigmatisme", "larmes", "type"))
我将特别感谢任何帮助!