Displaying 1 result from an estimated 1 matches for "close_quart".
Did you mean:
close_quarter
2012 Feb 18
1
Finicky factor comparison operators
This error occurs because the "==" comparison operator doesn't allow
comparison of ordered and normal factors:
/df[df5$close_quarter == as.Date("2011-02-01"),]/
Warning message:
In /`[.data.frame`(df, df$close_quarter == as.Date("2011-02-01")/, :
Incompatible methods ("Ops.ordered", "Ops.Date") for "=="
Why should this be a problem -- Isn't this being overly cautious?...