%ni% | R Documentation |
Use to filter that are not in.
x %ni% table
x |
A variable. |
table |
A data frame. |
Data must have a categorical variable you want to know the most frequent value.
library(tidyverse) iris %>% filter(Species %ni% "setosa") %>% group_by(Species) %>% summarise(nb=dplyr::n())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.