How to express extreme low numbers

48 views Asked by At

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?

0

There are 0 answers