The following code
x <- getSymbols(Symbols="RU1000TR",
warnings=FALSE,
env=NULL,
src="FRED")
always seems to return a warning message such as:
Warning message:
In download.file(url, destfile, method, quiet, mode, cacheOK, extra) :
downloaded length 189629 != reported length 200
(this happens for other symbols as well). This is an annoyance, as I cannot find a way to prevent the warning, but the actual data seems to be fine. try, tryCatch, and even sink(tmpfile, type="message") fail to catch/prevent the message as well. Since it's not fatal, is it something to live with?