gpt4 book ai didi

r - expss 包可以处理带有加权数据的多选题吗?

转载 作者:行者123 更新时间:2023-12-04 10:53:43 24 4
gpt4 key购买 nike

expss 包可以解决这个链接中提出的问题吗?,它是关于数据集中带有权重变量的多响应问题

How to use the R survey package to analyze multiple response questions in a weighted sample?

假设我们有这个数据集:

demo <- tribble(
~dummy1, ~dummy2, ~dummy3, ~survey_weight,
1, 0, 0, 1.5,
1, 1, 0, 1.5,
1, 1, 1, .5,
0, 1, 1, 1.5,
1, 1, 1, .5,
0, 0, 1, .5,
)

我需要根据回答问题的总受访者而不是总答复来计算百分比

最佳答案

是的,这很容易:

library(expss)
demo = text_to_columns("
dummy1 dummy2 dummy3 survey_weight
1 0 0 1.5
1 1 0 1.5
1 1 1 .5
0 1 1 1.5
1 1 1 .5
0 0 1 .5
")


demo %>%
tab_cells(mdset(dummy1 %to% dummy3)) %>% # 'mdset' designate that with have multiple dichotomy set
tab_weight(survey_weight) %>% # weight
tab_stat_cpct() %>% # statistic
tab_pivot()

# | | #Total |
# | ------------ | ------ |
# | dummy1 | 66.7 |
# | dummy2 | 66.7 |
# | dummy3 | 50.0 |
# | #Total cases | 6.0 |

# shorter notation with the same result
calc_cro_cpct(demo, mdset(dummy1 %to% dummy3), weight = survey_weight)

但请注意,expss 在 SPSS 风格中使用简单的频率权重,而 'survey' 包可以提供更准确的加权方案。

关于r - expss 包可以处理带有加权数据的多选题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59332418/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com