Hi Community
I'm see this question in a random Facebook group, I'm try to make a solution but don't understand what happen because test1
and test3
are de same (TRUE)
test1 <- 58
test1 == 58
test2 <- test1/100
test2
test3 <- test2*100
test3
test3==58
test1==test3
test3 < test1
# > test1 <- 58
# > test1 == 58
# [1] TRUE
# > test2 <- test1/100
# > test2
# [1] 0.58
# > test3 <- test2*100
# > test3
# [1] 58
# > test3==58
# [1] FALSE
# > test1==test3
# [1] FALSE
# > test3 < test1
# [1] TRUE