本文简要介绍python语言中 sklearn.metrics.RocCurveDisplay.from_estimator
的用法。
用法:
classmethod from_estimator(estimator, X, y, *, sample_weight=None, drop_intermediate=True, response_method='auto', pos_label=None, name=None, ax=None, **kwargs)
从估算器创建 ROC 曲线显示。
- estimator:估计器实例
拟合分类器或拟合
Pipeline
,其中最后一个估计器是分类器。- X:{类数组,稀疏矩阵},形状为 (n_samples, n_features)
输入值。
- y:形状类似数组 (n_samples,)
目标值。
- sample_weight:形状类似数组 (n_samples,),默认=None
样本权重。
- drop_intermediate:布尔,默认=真
是否删除一些不会出现在绘制的 ROC 曲线上的次优阈值。这对于创建更轻的 ROC 曲线很有用。
- response_method:{‘predict_proba’, ‘decision_function’, ‘auto’} 默认='自动'
指定是使用predict_proba 还是decision_function 作为目标响应。如果设置为‘auto’,则首先尝试predict_proba,如果不存在,则接下来尝试decision_function。
- pos_label:str 或 int,默认 = 无
在计算 roc auc 指标时被认为是正类的类。默认情况下,
estimators.classes_[1]
被视为正类。- name:str,默认=无
用于标注的 ROC 曲线的名称。如果
None
,使用估计器的名称。- ax:matplotlib 轴,默认=无
要绘制的轴对象。如果
None
,则创建一个新的图形和轴。- **kwargs:dict
要传递给 matplotlib 的
plot
的关键字参数。
- display:
RocCurveDisplay
ROC 曲线显示。
- display:
参数:
返回:
例子:
>>> import matplotlib.pyplot as plt >>> from sklearn.datasets import make_classification >>> from sklearn.metrics import RocCurveDisplay >>> from sklearn.model_selection import train_test_split >>> from sklearn.svm import SVC >>> X, y = make_classification(random_state=0) >>> X_train, X_test, y_train, y_test = train_test_split( ... X, y, random_state=0) >>> clf = SVC(random_state=0).fit(X_train, y_train) >>> RocCurveDisplay.from_estimator( ... clf, X_test, y_test) <...> >>> plt.show()
相关用法
- Python sklearn RocCurveDisplay.from_predictions用法及代码示例
- Python sklearn RocCurveDisplay用法及代码示例
- Python sklearn RobustScaler用法及代码示例
- Python sklearn RandomTreesEmbedding用法及代码示例
- Python sklearn RadiusNeighborsTransformer用法及代码示例
- Python sklearn RadiusNeighborsRegressor.radius_neighbors_graph用法及代码示例
- Python sklearn RandomizedSearchCV用法及代码示例
- Python sklearn RFE用法及代码示例
- Python sklearn RadiusNeighborsClassifier用法及代码示例
- Python sklearn RidgeCV用法及代码示例
- Python sklearn RegressorChain用法及代码示例
- Python sklearn RandomForestClassifier用法及代码示例
- Python sklearn RadiusNeighborsTransformer.radius_neighbors_graph用法及代码示例
- Python sklearn RANSACRegressor用法及代码示例
- Python sklearn RandomForestRegressor用法及代码示例
- Python sklearn RepeatedStratifiedKFold用法及代码示例
- Python sklearn RadiusNeighborsRegressor用法及代码示例
- Python sklearn RBF用法及代码示例
- Python sklearn Ridge用法及代码示例
- Python sklearn RadiusNeighborsTransformer.radius_neighbors用法及代码示例
- Python sklearn RidgeClassifierCV用法及代码示例
- Python sklearn RadiusNeighborsRegressor.radius_neighbors用法及代码示例
- Python sklearn RepeatedKFold用法及代码示例
- Python sklearn RBFSampler用法及代码示例
- Python sklearn RadiusNeighborsClassifier.radius_neighbors_graph用法及代码示例
注:本文由纯净天空筛选整理自scikit-learn.org大神的英文原创作品 sklearn.metrics.RocCurveDisplay.from_estimator。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。