本文簡要介紹 python 語言中 scipy.cluster.hierarchy.ClusterNode.pre_order
的用法。
用法:
ClusterNode.pre_order(func=<function ClusterNode.<lambda>>)#
在沒有遞歸函數調用的情況下執行前序遍曆。
當第一次遇到葉節點時,將調用
func
並將葉節點作為其參數,並將其結果附加到列表中。例如,聲明:
ids = root.pre_order(lambda x: x.id)
返回與樹的葉節點相對應的節點 ID 列表,因為它們從左到右出現。
- func: 函數
應用於前序遍曆中的每個葉子ClusterNode對象。給定前序遍曆
n[i]
中的第i
葉節點,func(n[i])
的結果存儲在L[i]
中。如果未提供,則使用該節點對應的原始觀察的索引。
- L: 列表
前序遍曆。
參數 ::
返回 ::
相關用法
- Python SciPy CensoredData.interval_censored用法及代碼示例
- Python SciPy CensoredData.right_censored用法及代碼示例
- Python SciPy Covariance.from_cholesky用法及代碼示例
- Python SciPy CubicSpline.solve用法及代碼示例
- Python SciPy CensoredData.left_censored用法及代碼示例
- Python SciPy Covariance.from_precision用法及代碼示例
- Python SciPy Covariance.whiten用法及代碼示例
- Python SciPy CubicHermiteSpline.solve用法及代碼示例
- Python SciPy Covariance.colorize用法及代碼示例
- Python SciPy Covariance.from_eigendecomposition用法及代碼示例
- Python SciPy Covariance.from_diagonal用法及代碼示例
- Python SciPy interpolate.make_interp_spline用法及代碼示例
- Python SciPy stats.anderson用法及代碼示例
- Python SciPy stats.iqr用法及代碼示例
- Python SciPy FortranFile.read_record用法及代碼示例
- Python SciPy ndimage.correlate用法及代碼示例
- Python SciPy special.exp1用法及代碼示例
- Python SciPy special.expn用法及代碼示例
- Python SciPy signal.czt_points用法及代碼示例
- Python SciPy interpolate.krogh_interpolate用法及代碼示例
- Python SciPy ndimage.morphological_gradient用法及代碼示例
- Python SciPy distance.sokalmichener用法及代碼示例
- Python SciPy linalg.eigvalsh_tridiagonal用法及代碼示例
- Python SciPy linalg.cdf2rdf用法及代碼示例
- Python SciPy csc_array.diagonal用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.cluster.hierarchy.ClusterNode.pre_order。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。