ggplot(datset, aes(x=Date.received,y=Issue))+geom_dotplot(stat="identity")
This is what I have right now and I just want to get a count of "Issue" not grouped by unique identity.
I want to look something like this:
ggplot(datset, aes(x=Date.received,y=Issue))+geom_dotplot(stat="identity")
This is what I have right now and I just want to get a count of "Issue" not grouped by unique identity.
I want to look something like this: