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
It occurs to me that a slices label[] can fit a slice of RefTuples. So for instance, I can fit dates and really anything else. This is a big win for working with dataframes since it would enable you to create a heterogeneous array where the main data is numerical or some kind but has a more sophisticated set of labels.
However, it seems that there are still some limitations in working with these. So for instance the code below struggles with just reading out the values from them. It doesn't apply in the same way to the original zipped values, suggesting that it is when coercing it to be a label[] that causes the issue.
To be honest, labels haven't been implemented. They are in the draft state. The idea is to replace Series with labeled Slice. I would like them to work but they aren't on my TODO list.
It would probably be a good idea to have an issue that lists things that need to get done on them to bring them out of a draft state, even if they aren't on your TODO list.
It occurs to me that a slices
label[]
can fit a slice ofRefTuple
s. So for instance, I can fit dates and really anything else. This is a big win for working with dataframes since it would enable you to create a heterogeneous array where the main data is numerical or some kind but has a more sophisticated set of labels.However, it seems that there are still some limitations in working with these. So for instance the code below struggles with just reading out the values from them. It doesn't apply in the same way to the original
zip
ped values, suggesting that it is when coercing it to be alabel[]
that causes the issue.The text was updated successfully, but these errors were encountered: