# NOT RUN {
# look these words in name, aliases and keywords
jitsu(cat,face)
jitsu(tears)
jitsu(poop)
jitsu(sad,cat)
jitsu(monkey)
# regex lookup
jitsu(~cat)
jitsu(~"^cat")
jitsu(~regex("^cat"))
# usual filter
jitsu(name == "cat")
jitsu(skin_tone == "light" )
jitsu(subcategory == "person-role", skin_tone == "medium-dark" )
jitsu(subcategory == "face-fantasy" )
# get all the results in a new tibble
ji_filter( monkey )
ji_filter( ~"^cat" )
ji_filter(hand, skin_tone == "light" )
# just get the emojis
ji_set( monkey )
ji_set( ~"^cat" )
ji_set(hand, skin_tone == "medium-dark" )
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab