I am trying to compute this in R
When I tried
exp(1)^ln(1.89)/10
I get the error: Error in ln(1.89) : could not find function "ln"
I was wondering if ln is ^
I tried exp(1)^(1.89/10)
but I get a value of 1.208041 and the answer should be 1.066.
Am I translating the equation into R correctly?