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