Back

Explore Courses Blog Tutorials Interview Questions
0 votes
4 views
in R Programming by (5.3k points)

For example, how would I go about entering the value e^2 in R?

1 Answer

0 votes
by
edited by

The R expression

exp(1)

represents e, and

exp(2)

represents e^2.

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

Browse Categories

...