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
Related to #25 it's unclear what common Julia operations are applicable to a KeyedDataset (e.g., first(ds), values(ds), etc). Maybe it's worth making this type an AbstractDict with some extra functions?
The text was updated successfully, but these errors were encountered:
Or perhaps behave similarly to a Dictionaries.jlDictionary, which doesn't subtype AbstractDict, largely because they "can be manipulated and transformed using a similar interface to Julia's built-in arrays", which i think makes sense for a KeyedDataset e.g. mapping and broadcasting preserves the indices and transforms the corresponding values.
Related to #25 it's unclear what common Julia operations are applicable to a
KeyedDataset
(e.g.,first(ds)
,values(ds)
, etc). Maybe it's worth making this type anAbstractDict
with some extra functions?The text was updated successfully, but these errors were encountered: