Created
November 27, 2010 12:21
-
-
Save prasoonsharma/717849 to your computer and use it in GitHub Desktop.
Getting help on R
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# LOCAL HELP | |
# R offers great help articles with the install | |
# Just type ? and the function if you know the function name | |
?sqrt # Pay special attention to function definition and take a look at the examples | |
# Type ?? and your search keyword to search a keyword in R help documentation | |
??maximum | |
# ON THE INTERNET | |
# Rseek: http://www.rseek.org | |
- Stackoverflow: http://stackoverflow.com/questions/tagged/r | |
- Groups: | |
- Google your R question |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment