How can we correctly calculate the following?
df <- data.frame(logp=c(-2,-200,-600))
10^(df$logp)
# [1] 1e-02 1e-200 0e+00
This will give us 0
in logp=-600
. Can we handle this problem?
How can we correctly calculate the following?
df <- data.frame(logp=c(-2,-200,-600))
10^(df$logp)
# [1] 1e-02 1e-200 0e+00
This will give us 0
in logp=-600
. Can we handle this problem?