This code evaluate a list of predicted data. But why can't I print each of them in console in numeric format?
const string command = "library('forecast'); birth <-scan('http://robjhyndman.com/tsdldata/data/nybirths.dat'); fit <- nnetar(birth); fcast <- forecast(fit); fcast";
engine.Evaluate(command);
var list = engine.GetSymbol("fcast").AsList();
foreach (var x in list)
{
Console.WriteLine(x);
}