Skip to content

Instantly share code, notes, and snippets.

@thoolihan
Created May 11, 2014 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thoolihan/c7bcbc724b79d3051ddf to your computer and use it in GitHub Desktop.
Save thoolihan/c7bcbc724b79d3051ddf to your computer and use it in GitHub Desktop.
Basic Example
help(topic) # help on a topic
help.start() # browser-based help tool
source("someRFile.R") # load a file
a = 1 + 3
rm(a) # remove the variable a
odd_digits <- c(1,3,5,7,9)
total = sum(odd_digits)
count = length(odd_digits)
avg = mean(odd_digits)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment