I have values of the magnitude of e-11 (representing light) and I would like to bring them into [nm]. I figured out that, e.g.
df$w.length[1]
[1] 1.239842e-11
df$w.length[1] + 1e-11
[1] 2.239842e-11
works but
> df$w.length[1] + 1e9
[1] 1e+09
doesn't. Also simply
> 1e-12 + 1e9
[1] 1e+09
not as well. Why is that?