# Extract data from black and white patients who are not latinx
#
AAvsCA <- function(dat){
dat %>%
filter(race == "white" | race == "black or african american") %>%
filter(ethnicity == "not hispanic or latino")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.