I am trying to compare between 2 values, both numeric and identical, but still get FALSE, any one know what is the reason?
class(merged_01_11$X1_01)
#[1] "numeric"
class(merged_01_11$X1_11)
#[1] "numeric"
merged_01_11$X1_11[1]
#[1] 8291870
merged_01_11$X1_01[1]
#[1] 8291870
identical(merged_01_11$X1_11[1], merged_01_11$X1_01[1])
#[1] FALSE