Is there any add-in for RStudio (or some other software/IDE), that would go through all my past R codes (saved in some folder), and try to predict what I am about to type, or show in which files I have used this function before?
For example at the moment prediction works well for known (installed packages). Like when we type lapply( + [TAB]
window pops up with suggestion about arguments and help excerpt.
This is great, but when we vaguely remember the function name/package and start typing, and it will try to guess, and point to previous R files where I have used the similar functions. For example: when I type venn
, it will pop up as:
someOldScript123.R | venn::venn(... | #Line23
someOldScript444.R | VennDiagram::venn.diagram(... | #Line345
someOldScript123.R | gplots::venn(... | #Line999
etc.
Sorted by frequency of usage.