Express "e" in R?

3 messages Options
Embed this post
Permalink
Crab

Express "e" in R?

Reply Threaded More More options
Print post
Permalink
How do you express "e" the base of the natural log in R.
Duncan Murdoch

Re: Express "e" in R?

Reply Threaded More More options
Print post
Permalink
On 08/11/2009 5:03 PM, Crab wrote:
> How do you express "e" the base of the natural log in R.

e <- exp(1)

______________________________________________
[hidden email] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
David Winsemius

Re: Express "e" in R?

Reply Threaded More More options
Print post
Permalink
In reply to this post by Crab
exp(1)
#[1] 2.718282

On Nov 8, 2009, at 5:03 PM, Crab wrote:

>
> How do you express "e" the base of the natural log in R.
> --


David Winsemius, MD
Heritage Laboratories
West Hartford, CT

______________________________________________
[hidden email] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.