Answers for "exp() function R"

R
0

exp() function R

data <- 1
info <- -2
stock <- 1.9

exp(data)
exp(info)
exp(stock)
Output

[1] 2.718282
[1] 0.1353353
[1] 6.685894
Posted by: Guest on January-25-2022

Browse Popular Code Answers by Language