Skip to content

Instantly share code, notes, and snippets.

@cdesante
Created September 9, 2012 13:49
Show Gist options
  • Save cdesante/3684434 to your computer and use it in GitHub Desktop.
Save cdesante/3684434 to your computer and use it in GitHub Desktop.
R as a calculator
#R as a giant awesome calculator:
4+5
exp(5)
log(10)
log(exp(6))
log(10, base=10)
sqrt(64)
pi^2
sqrt(pi^2)
pi
round(pi, 4)
sum(c(1,2,3))
7-308
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment