0

我有一项调查的数据。我有来自几个李克特类型问题的数据。例如:“以下因素在多大程度上促成了您决定攻读博士学位课程?” 有 4 类: 1:完全没有;2:少量;3:在一定程度上;4:很大程度上)

我导出了数据,它目前看起来像这样:

id  Q1_Item1  Q1_Item2  Q1_Item3  Q1_Item4
 1         4         4         4         2
 2         1         2         3         4
 3         3         4         4         4
 4         3         3         3         3
 5         2         1         1         1

我想将数据制成表格,看起来像这样

      Not at all  To a small extent  To some extent  To a great extent 
Item1          1                  1               2                  1
Item2          1                  1               1                  2
Item3          1                  0               2                  2
Item4          1                  1               1                  2

现在的数字代表每个类别下的响应计数。我怎样才能在 R 中做到这一点?

4

1 回答 1

4

假设这些已作为因素被读入,这些文本条目作为标签,那么这有效:

# If the data was read in as numeric, then this will convert to factor-class
dfrm[-1] <- lapply(dfrm[-1], factor, levels=1:4, labels=c("Not at all", 
                        "To a small extent", "To some extent", "To a great extent") )
t( sapply(dfrm[-1], table) )
        Not at all To a small extent To some extent To a great extent
factor1          2                 1              4                 3
factor2          0                 0              3                 8
factor3          0                 0              3                 9
factor4          0                 0              6                 6
factor5          0                 0              3                 8
factor6          2                 0              0                10
factor7          0                 0              2                10
于 2012-07-04T12:57:40.560 回答