Can the expss package solve the question asked in this link?, it's about multiple response question with a weighting variable in the dataset
How to use the R survey package to analyze multiple response questions in a weighted sample?
Let's suppose we have this dataset:
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,
)
I need to calculate the percentage based on total respondents who answered the question, and not on total responses