<div dir="ltr">This mailing list is about questions related to the data.table package. You might want to try <a href="https://community.rstudio.com/">https://community.rstudio.com/</a> instead.<div><br></div><div>I'm not sure why your code doesn't work, but another approach would be something like</div><div><br></div><div>DF %>% group_by(g) %>% summarise(count = sum(x != "yes"))</div><div><br></div><div>If this works, it's because TRUE/FALSE is treated as 1/0 when summed. You might also want to look at the dplyr functions ?tally and ?count.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Oct 9, 2017 at 3:20 PM, christinelly <span dir="ltr"><<a href="mailto:01chrikelly@gmail.com" target="_blank">01chrikelly@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I am new to R, can someone please what is wrong with my code? I want to<br>
filter my result to only show people who have answered "no" but my result<br>
generates 0 rows. Does it have anything to do with the fact that my data is<br>
stored as factors and not characters?<br>
<br>
I also tried another code but gave me three rows, what am I doing wrong?<br>
Thanks in advance,<br>
Christine<br>
<br>
'data.frame':   491775 obs. of  1 variable:<br>
 $ hivtst6: Factor w/ 2 levels "Yes","No": 2 1 1 2 2 1 2 2 2 2 ...<br>
<br>
brfss2013 %>%<br>
  filter(as.character(hivtst6) == "yes") %>%<br>
  group_by(hivtst6) %>%<br>
  summarise(count = n())<br>
<br>
brfss2013 %>%<br>
  filter (hivtst6 != "yes") %>%<br>
  group_by(hivtst6) %>%<br>
  summarise(count = n())<br>
<br>
<<a href="http://r.789695.n4.nabble.com/file/t385588/Screen_Shot_2017-10-09_at_21.png" rel="noreferrer" target="_blank">http://r.789695.n4.nabble.<wbr>com/file/t385588/Screen_Shot_<wbr>2017-10-09_at_21.png</a>><br>
<br>
<br>
<br>
--<br>
Sent from: <a href="http://r.789695.n4.nabble.com/datatable-help-f2315188.html" rel="noreferrer" target="_blank">http://r.789695.n4.nabble.com/<wbr>datatable-help-f2315188.html</a><br>
______________________________<wbr>_________________<br>
datatable-help mailing list<br>
<a href="mailto:datatable-help@lists.r-forge.r-project.org">datatable-help@lists.r-forge.<wbr>r-project.org</a><br>
<a href="https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/datatable-help" rel="noreferrer" target="_blank">https://lists.r-forge.r-<wbr>project.org/cgi-bin/mailman/<wbr>listinfo/datatable-help</a><br>
</blockquote></div><br></div>