重采样#
- sklearn.utils.resample(*arrays, replace=True, n_samples=None, random_state=None, stratify=None)[source]#
以一致的方式对数组或稀疏矩阵进行重采样。
默认策略实现自举程序的一步。
- 参数:
- *arrays形状为 (n_samples,) 或 (n_samples, n_outputs) 的类数组序列
可索引的数据结构可以是数组、列表、数据框或具有相同第一维度的 scipy 稀疏矩阵。
- replace布尔值,默认为 True
实现有放回抽样。如果为 False,则实现(切片)随机排列。
- n_samples整数,默认为 None
要生成的样本数。如果留空,则自动设置为数组的第一维。如果 replace 为 False,则不应大于数组的长度。
- random_state整数、RandomState 实例或 None,默认为 None
确定数据洗牌的随机数生成。传递一个整数以在多次函数调用中获得可重复的结果。参见 词汇表。
- stratify形状为 (n_samples,) 或 (n_samples, n_outputs) 的类数组或稀疏矩阵,默认为 None
如果非 None,则使用此作为类别标签以分层方式分割数据。
- 返回:
- resampled_arrays形状为 (n_samples,) 或 (n_samples, n_outputs) 的类数组序列
集合的重采样副本序列。原始数组不受影响。
另请参见
洗牌
以一致的方式打乱数组或稀疏矩阵。
示例
可以在同一运行中混合稀疏和密集数组。
>>> import numpy as np >>> X = np.array([[1., 0.], [2., 1.], [0., 0.]]) >>> y = np.array([0, 1, 2]) >>> from scipy.sparse import coo_matrix >>> X_sparse = coo_matrix(X) >>> from sklearn.utils import resample >>> X, X_sparse, y = resample(X, X_sparse, y, random_state=0) >>> X array([[1., 0.], [2., 1.], [1., 0.]]) >>> X_sparse <Compressed Sparse Row sparse matrix of dtype 'float64' with 4 stored elements and shape (3, 2)> >>> X_sparse.toarray() array([[1., 0.], [2., 1.], [1., 0.]]) >>> y array([0, 1, 0]) >>> resample(y, n_samples=2, random_state=0) array([0, 1])
使用分层的示例
>>> y = [0, 0, 1, 1, 1, 1, 1, 1, 1] >>> resample(y, n_samples=5, replace=False, stratify=y, ... random_state=0) [1, 1, 1, 0, 1]