매번 똑같은거 Metrics 구해놓고CI 다시 계산한다고 시간을 보내고 있는 나를 발견.... 그냥 블로그에 올려놓고 생각나면 편하게 와서 긁어 쓰려구 포스팅 함수 정의 library(boot)library(Epi)library(pROC)calc_metrics function(data, indices) { d data[indices, ] tp sum(d$predictions == 1 & d$label == 1) tn sum(d$predictions == 0 & d$label == 0) fp sum(d$predictions == 1 & d$label == 0) fn sum(d$predictions == 0 & d$label == 1) acc (tp + t..