Closed wfmackey closed 4 years ago
Haven't fully checked out but I think we're missing the sortedness of hid and pid. We need both nested sortedness and discrete sortedness. That is
hid
pid
is.unsorted(australia$state) is.unsorted(australia$sa2) is.unsorted(australia$hid) is.unsorted(australia$pid)
Should all return FALSE. I think pid and hid are created too early for this to occur.
FALSE
They are all not unsorted:
> aus <- read_fst("inst/extdata/australia.fst") > is.unsorted(aus$state) [1] FALSE > is.unsorted(aus$sa2) [1] FALSE > is.unsorted(aus$hid) [1] FALSE > is.unsorted(aus$pid) [1] FALSE
Haven't fully checked out but I think we're missing the sortedness of
hid
andpid
. We need both nested sortedness and discrete sortedness. That isShould all return
FALSE
. I thinkpid
andhid
are created too early for this to occur.