ROC Curve

버전 3.1 (3.55 KB) 작성자: Víctor Martínez-Cagigal
MATLAB function which performs a ROC curve of two-class data.
다운로드 수: 5.1K
업데이트 날짜: 2018/12/13

라이선스 보기

This function calculates the Receiver Operating Characteristic curve, which represents the 1-specificity and sensitivity of two classes of data, (i.e., class_1 and class_2).

The function also returns all the needed quantitative parameters: threshold position, distance to the optimum point, sensitivity, specificity, accuracy, area under curve (AROC), positive and negative predicted values (PPV, NPV), false negative and positive rates (FNR, FPR), false discovery rate (FDR), false omission rate (FOR), F1 score, Matthews correlation coefficient (MCC), Informedness (BM) and Markedness; as well as the number of true positives (TP), true negatives (TN), false positives (FP), and false negatives (FN).

Example of use:
class_1 = 0.5*randn(100,1);
class_2 = 0.5+0.5*randn(100,1);
roc_curve(class_1, class_2);

인용 양식

Víctor Martínez-Cagigal (2024). ROC Curve (https://www.mathworks.com/matlabcentral/fileexchange/52442-roc-curve), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2014a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
3.1

All parameters are now printed in the CMD.

3.0

The function now outputs more parameters.

2.1.0.0

Classes are now indicated separately.

2.0.0.0

Different sizes in class_1 and class_2 are now allowed.

1.1.0.0

Fixed a bug in the output data.

1.0.0.0