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
hanux