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") is ds.saveas("out.npz"): the format is chosen from dest’s extension, overridable with format=. The whole store is written, or just a selection (colstore.saveas(ds[rows, cols], dest)).

Parameters:
Return type:

Any