clear# _HdfData.clear(data=True, interp=True, recursive=True)[source]# Release cached data and/or the cached interpolator. Parameters: databool, optionalIf True (default), release the in-memory data array cache. interpbool, optionalIf True (default), release the cached interpolator. recursivebool, optionalIf True (default) and data is True, also call clear() on each coordinate scale reader. Examples >>> reader.clear() >>> reader.data_cached, reader.interp_cached (False, False)