Description
Functional Help for Functions, Objects, and Packages.
Description
Enhance R help system by fuzzy search and preview interface, pseudo-postfix operators, and more. The `?.` pseudo-postfix operator and the `?` prefix operator displays documents and contents (source or structure) of objects simultaneously to help understanding the objects. The `?p` pseudo-postfix operator displays package documents, and is shorter than help(package = foo).
README.md
felp
felp
is a short of functional help, and provides
- fuzzy search and preview of help
- with
fuzzyhelp
function or "Fuzzy Search on R Help" RStudio Addin
- with
- Enhanced alternatives of base features
?.
pseudo-postfix operator to simultaneously display a help document and a structure of an object?p
pseudo-postfix operator to display document of a package- and more
Installation
From CRAN
install.packages("felp")
From GitHub
source("https://install-github.me/atusy/felp")
Features
Fuzzy search and preview of help
with fuzzyhelp()
or "Fuzzy Search on R Help" RStudio Addin
Enhanced alternatives of base features
# ? operator
?help
?utils::help
# ?. pseudo postfix operator for functions and objects
help?.
utils::help?.
# ?p pseudo postfix operator for packages
utils?p
# felp as an extention of utils::help
felp(help)
felp("help")
felp(utils::help)
felp(help, utils)
felp(package = utils)