I believe $matched.colleges[[3]], $matched.colleges[[4]] (both should be empty) as well as $matched.students[3,1] (should be 2) are wrong but I may be doing this wrong.
Setting slots = c(1,2,3,0) in the above example kind of works as expected, except for $matched.colleges[[4]] which should be empty instead of c(NA, NA).
Is it even possible to have zeros as elements of slots vector?
I would like to set slots for some of the colleges zero, such as this:
which returns
I believe
$matched.colleges[[3]]
,$matched.colleges[[4]]
(both should be empty) as well as$matched.students[3,1]
(should be2
) are wrong but I may be doing this wrong. Settingslots = c(1,2,3,0)
in the above example kind of works as expected, except for$matched.colleges[[4]]
which should be empty instead ofc(NA, NA)
.Is it even possible to have zeros as elements of slots vector?