For the dataset shown in the screenshot, I want to create a bar plot showing the count of papers published with (1) no female authors and (2) at least 1 female author
I tried this code below but it doesn't classify it correctly into 0 Females and not 0 Females. Instead I am just stuck at Males and Females
` authors_tbl %>%
filter(gender %in% c('F','M')) %>%
group_by(gender) %>%
summarise(count = n_distinct(k))%>%
collect() %>%
ggplot() +
geom_col(aes(x=gender, y=count))
`