I am having trouble understanding the output of the function unique(). If I try to reduce the following vector to non-duplicated values I get:
unique(c(1*1e-04,10*1e-05))
[1] 1e-04
But if I try with two values one tenth smaller I get:
unique(c(1*1e-05,10*1e-06))
[1] 1e-05 1e-05
What is going on here? Is there a way to get only one value in the second example?