用法
precision(data, ...)
# S3 method for data.frame
precision(
data,
truth,
estimate,
estimator = NULL,
na_rm = TRUE,
case_weights = NULL,
event_level = yardstick_event_level(),
...
)
precision_vec(
truth,
estimate,
estimator = NULL,
na_rm = TRUE,
case_weights = NULL,
event_level = yardstick_event_level(),
...
)
參數
- data
-
包含
truth
和estimate
參數指定的列的data.frame
,或者table
/matrix
,其中真正的類結果應位於表的列中。 - ...
-
目前未使用。
- truth
-
真實類結果的列標識符(即
factor
)。這應該是一個不帶引號的列名,盡管此參數是通過表達式傳遞的並且支持quasiquotation(您可以不帶引號的列名)。對於_vec()
函數,一個factor
向量。 - estimate
-
預測類結果的列標識符(也是
factor
)。與truth
一樣,可以通過不同的方式指定,但主要方法是使用不帶引號的變量名稱。對於_vec()
函數,一個factor
向量。 - estimator
-
其中之一:
"binary"
、"macro"
、"macro_weighted"
或"micro"
指定要完成的平均類型。"binary"
僅與兩類情況相關。其他三種是計算多類指標的通用方法。默認會根據estimate
自動選擇"binary"
或"macro"
。 - na_rm
-
logical
值,指示在計算繼續之前是否應剝離NA
值。 - case_weights
-
案例權重的可選列標識符。這應該是一個不帶引號的列名稱,其計算結果為
data
中的數字列。對於_vec()
函數,一個數值向量。 - event_level
-
單個字符串。
"first"
或"second"
指定將truth
的哪個級別視為"event"。此參數僅適用於estimator = "binary"
。默認使用內部幫助程序,通常默認為"first"
,但是,如果設置了已棄用的全局選項yardstick.event_first
,則將使用該幫助程序並發出警告。
值
tibble
包含列 .metric
、 .estimator
和 .estimate
以及 1 行值。
對於分組 DataFrame ,返回的行數將與組數相同。
對於 precision_vec()
,單個 numeric
值(或 NA
)。
細節
精度是預測的真正相關結果占預測相關結果總數的百分比,表征“檢索性能的純度”(Buckland 和 Gey,1994)。
當計算的分母為 0
時,精度未定義。當 # true_positive = 0
和 # false_positive = 0
都為 true 時會發生這種情況,這意味著沒有預測事件。計算二進製精度時,將返回 NA
值並帶有警告。計算多類精度時,單個 NA
值將被刪除,計算將繼續進行,但會出現警告。
相關級別
在計算二元分類指標時,對於哪個因子級別應自動被視為 "event" 或 "positive" 結果,沒有通用約定。在 yardstick
中,默認使用第一級。要更改此設置,請將參數 event_level
更改為 "second"
以將因子的最後一個級別視為感興趣級別。對於涉及 one-vs-all 比較(例如宏平均)的多類擴展,此選項將被忽略,並且 "one" 級別始終是相關結果。
多級
此指標可使用宏觀、微觀和宏觀加權平均。如果提供了超過 2 個級別的 truth
因子,則默認選擇宏平均。否則,將進行標準二進製計算。有關詳細信息,請參閱vignette("multiclass", "yardstick")
。
執行
假設一個 2x2 表,其符號為:
Reference | ||
Predicted | Relevant | Irrelevant |
Relevant | A | B |
Irrelevant | C | D |
這裏使用的公式是:
有關統計數據的討論,請參閱引用。
參考
巴克蘭,M.,和蓋伊,F. (1994)。召回率和精度之間的關係。美國信息科學學會雜誌,45(1), 12-19。
鮑爾斯,D.(2007)。評估:從精確率、召回率和 F 因子到 ROC、知情性、標記性和相關性。技術報告 SIE-07-001,弗林德斯大學
例子
# Two class
data("two_class_example")
precision(two_class_example, truth, predicted)
#> # A tibble: 1 × 3
#> .metric .estimator .estimate
#> <chr> <chr> <dbl>
#> 1 precision binary 0.819
# Multiclass
library(dplyr)
data(hpc_cv)
hpc_cv %>%
filter(Resample == "Fold01") %>%
precision(obs, pred)
#> # A tibble: 1 × 3
#> .metric .estimator .estimate
#> <chr> <chr> <dbl>
#> 1 precision macro 0.637
# Groups are respected
hpc_cv %>%
group_by(Resample) %>%
precision(obs, pred)
#> # A tibble: 10 × 4
#> Resample .metric .estimator .estimate
#> <chr> <chr> <chr> <dbl>
#> 1 Fold01 precision macro 0.637
#> 2 Fold02 precision macro 0.603
#> 3 Fold03 precision macro 0.706
#> 4 Fold04 precision macro 0.658
#> 5 Fold05 precision macro 0.651
#> 6 Fold06 precision macro 0.626
#> 7 Fold07 precision macro 0.562
#> 8 Fold08 precision macro 0.652
#> 9 Fold09 precision macro 0.605
#> 10 Fold10 precision macro 0.625
# Weighted macro averaging
hpc_cv %>%
group_by(Resample) %>%
precision(obs, pred, estimator = "macro_weighted")
#> # A tibble: 10 × 4
#> Resample .metric .estimator .estimate
#> <chr> <chr> <chr> <dbl>
#> 1 Fold01 precision macro_weighted 0.697
#> 2 Fold02 precision macro_weighted 0.690
#> 3 Fold03 precision macro_weighted 0.752
#> 4 Fold04 precision macro_weighted 0.690
#> 5 Fold05 precision macro_weighted 0.705
#> 6 Fold06 precision macro_weighted 0.682
#> 7 Fold07 precision macro_weighted 0.649
#> 8 Fold08 precision macro_weighted 0.702
#> 9 Fold09 precision macro_weighted 0.661
#> 10 Fold10 precision macro_weighted 0.683
# Vector version
precision_vec(
two_class_example$truth,
two_class_example$predicted
)
#> [1] 0.8194946
# Making Class2 the "relevant" level
precision_vec(
two_class_example$truth,
two_class_example$predicted,
event_level = "second"
)
#> [1] 0.8609865
相關用法
- R yardstick pr_auc 查準率曲線下麵積
- R yardstick pr_curve 精確率召回曲線
- R yardstick poisson_log_loss 泊鬆數據的平均對數損失
- R yardstick ppv 陽性預測值
- R yardstick accuracy 準確性
- R yardstick gain_capture 增益捕獲
- R yardstick conf_mat 分類數據的混淆矩陣
- R yardstick mn_log_loss 多項數據的平均對數損失
- R yardstick rpd 性能與偏差之比
- R yardstick mae 平均絕對誤差
- R yardstick detection_prevalence 檢測率
- R yardstick bal_accuracy 平衡的精度
- R yardstick rpiq 績效與四分位間的比率
- R yardstick roc_aunp 使用先驗類別分布,每個類別相對於其他類別的 ROC 曲線下麵積
- R yardstick roc_curve 接收者算子曲線
- R yardstick rsq R 平方
- R yardstick msd 平均符號偏差
- R yardstick mpe 平均百分比誤差
- R yardstick iic 相關性理想指數
- R yardstick recall 記起
- R yardstick roc_aunu 使用均勻類別分布,每個類別相對於其他類別的 ROC 曲線下麵積
- R yardstick npv 陰性預測值
- R yardstick rmse 均方根誤差
- R yardstick sens 靈敏度
- R yardstick rsq_trad R 平方 - 傳統
注:本文由純淨天空篩選整理自Max Kuhn等大神的英文原創作品 Precision。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。