X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Froc.h;h=5d63c96fb4e5872ff10eede534f35105c9176fb5;hb=e5f444ae6a67fdd38c5b08d5ba3592a7fb0f793a;hp=54028d58983a5f820eec489400969c7c8f6ff417;hpb=7e0f8af8463a3a9df128b220d3b3e37267d8cc5f;p=pspp diff --git a/src/language/stats/roc.h b/src/language/stats/roc.h index 54028d5898..5d63c96fb4 100644 --- a/src/language/stats/roc.h +++ b/src/language/stats/roc.h @@ -12,13 +12,17 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see . -*/ -#ifndef ROC_H -#define ROC_H + along with this program. If not, see . */ -struct dataset; -struct lexer; -int cmd_roc (struct lexer *lexer, struct dataset *ds); +#ifndef LANGUAGE_STATS_ROC_H +#define LANGUAGE_STATS_ROC_H 1 -#endif +/* These are case indexes into the cutpoint case readers for ROC + output, used by roc.c and roc-chart.c. */ +#define ROC_CUTPOINT 0 +#define ROC_TP 1 +#define ROC_FN 2 +#define ROC_TN 3 +#define ROC_FP 4 + +#endif /* language/stats/roc.h */