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
Objects like HDF5 files, SQL databases, Mongo Databases, and dicts of chunks of things might all be convertible. One could also imagine adding a very thin Directory type that expressed a filesystem hierarchy as a nested record type.
A natural common interchange format here might include dicts of either chunks(DataFrame) or chunks(ndarray) depending on the underlying dshape. This would also be a good place for chunks(dynd.nd.array).
The text was updated successfully, but these errors were encountered:
Perhaps when I said dict-like I meant Record dshape.
I can imagine doing something like the following:
>>>into('myfile.hdf5', 'sqlite://my.db')
Probably there are no nice and clean direct mechanisms for this, but probably something like Dict(Chunks(pd.DataFrame)) would be a sufficient intermediary. This is all low-priority though. We don't have an immediate use for this.
Objects like HDF5 files, SQL databases, Mongo Databases, and dicts of chunks of things might all be convertible. One could also imagine adding a very thin
Directory
type that expressed a filesystem hierarchy as a nested record type.A natural common interchange format here might include dicts of either
chunks(DataFrame)
orchunks(ndarray)
depending on the underlying dshape. This would also be a good place forchunks(dynd.nd.array)
.The text was updated successfully, but these errors were encountered: