I am calling an R function from the R package e1071 which is interfaced with libsvm (a C program). This function is passing C (printf) warning messages to the R console. I know this because the warning messages are of the form (warning:...) whereas R warning messages are capitalized (i.e. Warning:...).
I've tried everything to get rid of these messages in R (sink, suppressWarnings, invisible) but nothing seems to work.
Any ideas?
Thanks!
src/svm.cpp
in thee1071
package sources. – Bradfordbradlee