CROSSTABS: Fix computation of adjusted standardized residual.
[pspp] / src / language / stats / roc.h
index 54028d58983a5f820eec489400969c7c8f6ff417..5d63c96fb4e5872ff10eede534f35105c9176fb5 100644 (file)
    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 <http://www.gnu.org/licenses/>. 
-*/
-#ifndef ROC_H
-#define ROC_H
+   along with this program.  If not, see <http://www.gnu.org/licenses/>. */
 
-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 */