3

I am trying to get documentation for some R functions in R Studio, but unfortunately when I press F1 I get windows help instead of documentation for particular function.

Rui Barradas
  • 70,273
  • 8
  • 34
  • 66
nenad
  • 409
  • 3
  • 14
  • Enter `?` and then the name of a function (e.g. `?help`) in the console to look up a particular function, or `??` and then a pattern to search, e.g. `??help.search` – alistaire Sep 23 '18 at 18:57
  • how do we get help on dot functions? e.g. `> ?.rs.addApiFunction` No documentation for ‘.rs.addApiFunction’ in specified packages and libraries: you could try ‘??.rs.addApiFunction’ `> ??.rs.addApiFunction` No results found – mpag Sep 27 '18 at 17:34

1 Answers1

3

There is a help panel, probably on te right bottom corner. Press ctrl+3 to show it.

Augusto Fadel
  • 199
  • 1
  • 6