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.

See also

array, compressed_array, source

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): >