R programming: How do I get Euler’s number?

The R expression

exp(1)

represents e, and

exp(2)

represents e^2.

This works because exp is the exponentiation function with base e.

Leave a Comment