Created
April 13, 2018 01:28
-
-
Save lrasmus/1decc4c4af6dc61e45167a64b638c2f0 to your computer and use it in GitHub Desktop.
Test R.NET app loading xgboost
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using RDotNet; | |
namespace RDotNetTester | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
REngine.SetEnvironmentVariables(); | |
var engine = REngine.GetInstance(null, true, null); | |
engine.Evaluate("library(xgboost)"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment