Using Summarize to group responses

Hello. I know there is a simple way to do this , but I have forgotten how. I would like to produce a table that indicates the proportion of respondents who have answered "teller" and "feminist and teller". Here is what I have so far:

bias_data %>%
select(linda)

(Linda being the variable that indicates whether the respondent answered "teller" or "feminist and teller")Any guidance would be greatly appreciated :slight_smile:

Chapter 5 of R for Data Science (https://r4ds.had.co.nz/) should jog your memory. Look at section 5.6, Grouped summaries with summarise().

Hello. You could use count() or group_by() and summarise(). Check out (Count observations by group)
If you want proportion you can use mutate() to add a column that gives proportion as n/sum(n).
I see you're working on the conjunction fallacy.

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.