Examples for 'utils::help.search'


Search the Help System

Aliases: help.search ?? print.hsearch

Keywords: documentation

### ** Examples

help.search("linear models")    # In case you forgot how to fit linear
                                # models
help.search("non-existent topic")
No vignettes or demos or help files found with alias or concept or
title matching 'non-existent topic' using fuzzy matching.
??utils::help  # All the topics matching "help" in the utils package

## No test: 
help.search("print")            # All help pages with topics or title
                                # matching 'print'
help.search(apropos = "print")  # The same

help.search(keyword = "hplot")  # All help pages documenting high-level
                                # plots.
file.show(file.path(R.home("doc"), "KEYWORDS"))  # show all keywords

## Help pages with documented topics starting with 'try'.
help.search("\\btry", fields = "alias")
## End(No test)

[Package utils version 4.2.3 Index]