# 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(subgroup == "face-fantasy" )
# get all the results in a new tibble
jitsu_filter( monkey )
jitsu_filter( ~"^cat" )
jitsu_filter(hand, skin_tone == "light" )
# just get the emojis
jitsu_set( monkey )
jitsu_set( ~"^cat" )
jitsu_set(hand, skin_tone == "medium-dark" )
# }
# NOT RUN {
# }
Run the code above in your browser using DataLab