cf.Data.uncompress¶
-
Data.
uncompress
()[source]¶ Uncompress the underlying array in-place.
If the array is not compressed, then no change is made.
New in version 1.7.3.
Returns: None
Examples:
>>> d.get_compression_type() 'ragged contiguous' >>> d.source() <RaggedContiguousArray(4, 9): > >>> d.uncompress() >>> d.get_compression_type() '' >>> d.source() <NumpyArray(4, 9): >