these functions allow you to extract particular components
from wordnik definitions; get_pos the unique parts-of-speech,
get_text the unique definitions for each word, and get_score
the unique word scores.
# NOT RUN {# Retrieve the unique parts-of-speech for 'no' and 'kings'no_kings <- word_definitions(key = "madeupkey", words = c("no", "kings"))
get_pos(no_kings)
# }# NOT RUN {# }