colstore.saveas¶
- colstore.saveas(source, dest, *, format=None, **kwargs)[source]¶
Write a reader, dataset, or view to a file – the function form of
source.saveas.colstore.saveas(ds, "out.npz")isds.saveas("out.npz"): the format is chosen fromdest’s extension, overridable withformat=. The whole store is written, or just a selection (colstore.saveas(ds[rows, cols], dest)).