Dear Pawel:

yes, this is a bug. Fixed in the next release.

Thanks

David

-----------------------------------------

Dear All:


I found a problem with the SVM internal cross-validation (CV) accuracy
estimation in the e1071 package.

File: Rsvm.c
Line: 120

Today, it is:

int j = rand()%(prob->l-i);

Should be:

int j = i + rand()%(prob->l-i);

The erroneous code doesn't shuffle objects. Instead, it "randomly"
moves objects from beginning to the end.

______________________________________________
R-devel@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-devel

Reply via email to