search for: stat_result

Displaying 2 results from an estimated 2 matches for "stat_result".

Did you mean: sha1_result
2010 Nov 23
5
cross validation using e1071:SVM
...cross?) for cross validation but still I wanted to make a function to Generate cross-validation indices using pls: cvsegments method. ##################################################################### Code (at the end) Is working fine but sometime caret:confusionMatrix gives following error: stat_result<- confusionMatrix(pred_true1,species_test) Error in confusionMatrix.default(pred_true1, species_test) : The data and reference factors must have the same number of levels My data: total number=260 Class = 6 ##################################### Sorry if I missed some previous discussion ab...
1999 Feb 10
1
When a shell says no (clobber) it means maybe.
...1293 case IOWRITE: 1294 flags = O_WRONLY | O_CREAT | O_TRUNC; 1295 if (Flag(FNOCLOBBER) && !(iop->flag & IOCLOB) 1296 && (stat(cp, &statb) < 0 || S_ISREG(statb.st_mode))) 1297 flags |= O_EXCL; 1298 break; execute_cmd.c from bash-1.14.7 2834 stat_result = stat (redirectee_word, &finfo); 2835 2836 if ((stat_result == 0) && (S_ISREG (finfo.st_mode))) 2837 { 2838 free (redirectee_word); 2839 return (NOCLOBBER_REDIRECT); 2840 } 2841 2842 /* If the file was not present, make sure we open it exclusively 2...