how to use rapid miner with c # per command line

rodriguezestefarodriguezestefa Member Posts: 6 Contributor I
Hi, sorry, I'm new to this, I need help.
 I try to use a rapid miner process saved in a local repository, I've seen this code in some question:
 ProcessStartInfo Info = new ProcessStartInfo("C:/Program Files/Rapid-I/RapidMiner/scripts/rapidminer.bat");
           Info.UseShellExecute = false;
           Info.ErrorDialog = false;
           Info.CreateNoWindow = true;
           Info.RedirectStandardOutput = true;
           Info.Arguments = "C:/Program Files/Rapid-I/RapidMiner/scripts/01_ParameterOptimization.xml";
   
           Process p = System.Diagnostics.Process.Start(Info);

           System.IO.StreamReader oReader2 = p.StandardOutput;
           string sRes = oReader2.ReadToEnd();
           oReader2.Close();
           //All the external programs output is now in sRes
                       
           Console.WriteLine(sRes);
           Console.ReadLine();
Where do I pass the repository route to execute the process? 
How do I send the new excel file from which I want to obtain results based on the training set already done?

Best Answer

Sign In or Register to comment.