本文簡要介紹 python 語言中 scipy.datasets.clear_cache
的用法。
用法:
scipy.datasets.clear_cache(datasets=None)#
清理 scipy 數據集緩存目錄。
如果提供了 scipy.datasets 方法或其列表/元組,則 clear_cache 將刪除與傳遞的數據集方法可調用關聯的所有數據文件。
默認情況下,它會刪除所有緩存的數據文件。
- datasets: 可調用或可調用列表/元組或無
參數 ::
例子:
>>> from scipy import datasets >>> ascent_array = datasets.ascent() >>> ascent_array.shape (512, 512) >>> datasets.clear_cache([datasets.ascent]) Cleaning the file ascent.dat for dataset ascent
相關用法
- Python SciPy datasets.electrocardiogram用法及代碼示例
- Python SciPy datasets.ascent用法及代碼示例
- Python SciPy datasets.face用法及代碼示例
- Python SciPy distance.sokalmichener用法及代碼示例
- Python SciPy distance.dice用法及代碼示例
- Python SciPy distance.braycurtis用法及代碼示例
- Python SciPy dok_array.diagonal用法及代碼示例
- Python SciPy distance.cityblock用法及代碼示例
- Python SciPy dia_array.diagonal用法及代碼示例
- Python SciPy dok_matrix.diagonal用法及代碼示例
- Python SciPy dia_array.dot用法及代碼示例
- Python SciPy dok_matrix.nonzero用法及代碼示例
- Python SciPy distance.jensenshannon用法及代碼示例
- Python SciPy distance.sokalsneath用法及代碼示例
- Python SciPy dia_matrix.diagonal用法及代碼示例
- Python SciPy distance.kulczynski1用法及代碼示例
- Python SciPy distance.jaccard用法及代碼示例
- Python SciPy distance.minkowski用法及代碼示例
- Python SciPy distance.pdist用法及代碼示例
- Python SciPy distance.rogerstanimoto用法及代碼示例
- Python SciPy distance.canberra用法及代碼示例
- Python SciPy dlti.bode用法及代碼示例
- Python SciPy dia_matrix.dot用法及代碼示例
- Python SciPy distance.is_valid_y用法及代碼示例
- Python SciPy distance.chebyshev用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.datasets.clear_cache。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。