Keywords.Rd
List the keywords for specific R man pages or return a list of valid R keywords.
Keywords(topic)
If topic
is provided, return a list of the Keywords associated
with topic
. Otherwise, display the list of valid R Keywords
from the R doc/Keywords file.
# \donttest{
## Show all valid R Keywords
Keywords()
## Show Keywords associated with the 'merge' function
Keywords(merge)
#> [1] "data" "manip" "array"
Keywords("merge")# }
#> [1] "data" "manip" "array"