You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
will be set equal, but for any index i, their values at that index will be different.
Often this is not terribly problematic because in practice labels are usually unique, and so reordering by label matching will work.
However, labels are not required to be unique. If they aren't unique, according to documentation get_characters() will use the character IDs, which will be unique. But then ones has to know for reordering whether to match against the "id" or "label" slots of character objects.
So long story short, I want to argue for a preserveOrder or similar parameter for get_characters(), whose default value would be FALSE.
The text was updated successfully, but these errors were encountered:
More specifically, for a
nexml
objectnex
, the lists resulting fromand
colnames(get_characters(nex))
will be set equal, but for any index i, their values at that index will be different.
Often this is not terribly problematic because in practice labels are usually unique, and so reordering by label matching will work.
However, labels are not required to be unique. If they aren't unique, according to documentation
get_characters()
will use the character IDs, which will be unique. But then ones has to know for reordering whether to match against the "id" or "label" slots of character objects.So long story short, I want to argue for a
preserveOrder
or similar parameter forget_characters()
, whose default value would beFALSE
.The text was updated successfully, but these errors were encountered: