When I execute my code c# , and I didn't call the console window using
console.writeline(...)
The program shows me in the console window data frame elements. for example here :
REngine engine = REngine.GetInstance();
DataFrame DataIns = engine.Evaluate("DataIns<-read.table('C:/Users/isalah/Desktop/Fichiers_CRM/Fichier_csv/Diagnostic.csv', header=TRUE, sep =';',fill = TRUE)").AsDataFrame();
DataFrame DataAch = engine.Evaluate("DataAch=read.table('C:/Users/isalah/Desktop/Fichiers_CRM/Fichier_csv/Achats1.csv',header=TRUE,sep =';',fill = TRUE)").AsDataFrame();
DataFrame DataDia = engine.Evaluate("DataDia=read.table('C:/Users/isalah/Desktop/Fichiers_CRM/Fichier_csv/Diagnostic.csv',header=TRUE,sep =';',fill = TRUE)").AsDataFrame();
DataFrame DataCad = engine.Evaluate("DataCad=read.table('C:/Users/isalah/Desktop/Fichiers_CRM/Fichier_csv/CADEAUX.csv',header=TRUE,sep =';',fill = TRUE)").AsDataFrame();
It shows all the element of the data frame DataDia . As shown in the picture above : these are the end element of the data DataDia.
even I didn't call the console window at all! Why It shows exactly elements of the data DataDia ? How can I stop that? I need just to show elements using the command console.writeline ?
Thanks!