Can someone explain why R does this? And the reason behind it?
"-1" < 0
#[1] TRUE
# expected [1] FALSE # OR better NA
"-abc" < 0
#[1] TRUE
# expected [1] FALSE # OR better NA
From ?Comparison
:
If the two arguments are atomic vectors of different types, one is coerced to the type of the other, the (decreasing) order of precedence being character, complex, numeric, integer, logical and raw
This does not help either FWIW:
toString(-1) < 0
as.character(-1) < 0
toString("-abc") < 0
as.character("-abc") < 0
Am I wrong to expect a different result? I ask this because this seems to me something that could give unexpected results inside a function if not known.