{"id":26145770,"url":"https://github.com/rdotnet/rdotnet-onboarding","last_synced_at":"2025-10-17T13:59:07.266Z","repository":{"id":10750280,"uuid":"13009860","full_name":"rdotnet/rdotnet-onboarding","owner":"rdotnet","description":"A quick start guide for using R.NET","archived":false,"fork":false,"pushed_at":"2023-03-03T05:16:57.000Z","size":2271,"stargazers_count":42,"open_issues_count":8,"forks_count":43,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-07-14T04:41:37.512Z","etag":null,"topics":["dotnet","embedded-scripting-language","interoperability","r"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"TravisCook/Detour","license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rdotnet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":"SupportSamples/Program.cs","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2013-09-22T07:53:04.000Z","updated_at":"2023-09-10T01:00:18.000Z","dependencies_parsed_at":"2025-04-14T03:09:40.082Z","dependency_job_id":"27b2b15c-32f2-4ddb-b217-7a3bfd195f51","html_url":"https://github.com/rdotnet/rdotnet-onboarding","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rdotnet/rdotnet-onboarding","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdotnet%2Frdotnet-onboarding","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdotnet%2Frdotnet-onboarding/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdotnet%2Frdotnet-onboarding/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdotnet%2Frdotnet-onboarding/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rdotnet","download_url":"https://codeload.github.com/rdotnet/rdotnet-onboarding/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdotnet%2Frdotnet-onboarding/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266270388,"owners_count":23902731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dotnet","embedded-scripting-language","interoperability","r"],"created_at":"2025-03-11T04:55:19.687Z","updated_at":"2025-10-17T13:59:02.229Z","avatar_url":"https://github.com/rdotnet.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"R.NET quick start\n==================\n\nThis documentation is for R.NET 1.5.22 or above, though you may be able to use it back to 1.5.16.\n\nThis repository contains C# code for new users of [R.NET](http://rdotnet.codeplex.com). Note that the github repository of this [quick start guide](https://github.com/jmp75/rdotnet-onboarding) may be transient and lead to more stable documentation on the R.NET site down the track.\n\nInstallation\n-------------\n\n* Clone (and fork if you wish) this repository with your git client. You can also use GitHub's \"Download ZIP\" in the bottom right hand corner.\n* The solution and project files were authored with Visual Studio 2013 Express Desktop edition. You should be able to read them with versions down to VS2010, and monodevelop, but I have not tested.\n\n## NuGet packages\n\nThe project files use NuGet packages to manage references to R.NET. More detailed instructions are available at [the main R.NET documentation page](https://rdotnet.codeplex.com/documentation) \n\n## Direct DLL dependencies\n\nAlternately the .csproj files can have references to pre-compiled .NET binaries RDotNet.dll and RDotNet.NativeLibrary.dll, expected to be in the folder named \"Binaries\". You can:\n* Either copy these to the Binaries folder\n* or localize this to your own system, I'd recommend you use a decent text editor, which if decent should have handy capabilities to replace in files. If you are lacking such an editor I recommend [Notepad++](http://notepad-plus-plus.org) for Windows. Of course, you can update the references the manual way via visual studio: your call.\n\nThe Csharp project files contain the following references by default:\n```xml\n    \u003cReference Include=\"RDotNet\"\u003e\n      \u003cHintPath\u003e..\\Binaries\\RDotNet.dll\u003c/HintPath\u003e\n    \u003c/Reference\u003e\n    \u003cReference Include=\"RDotNet.NativeLibrary\"\u003e\n      \u003cHintPath\u003e..\\Binaries\\RDotNet.NativeLibrary.dll\u003c/HintPath\u003e\n    \u003c/Reference\u003e\n```\n\nSo you can do a search and replace on the string \"..\\Binaries\" in all the files \"*.csproj\" and replace with the path of your choice, e.g.:\n```xml\n    \u003cReference Include=\"RDotNet\"\u003e\n      \u003cHintPath\u003e..\\..\\..\\..\\bin\\R.NET\\1.5.5\\RDotNet.dll\u003c/HintPath\u003e\n    \u003c/Reference\u003e\n    \u003cReference Include=\"RDotNet.NativeLibrary\"\u003e\n      \u003cHintPath\u003e..\\..\\..\\..\\bin\\R.NET\\1.5.5\\RDotNet.NativeLibrary.dll\u003c/HintPath\u003e\n    \u003c/Reference\u003e\n```\n\nGetting started\n-------------\n\nThis on-boarding guide is a companion to [the main R.NET documentation page](https://rdotnet.codeplex.com/documentation), which you should refer to as of 2014-04-19.\nOpen the solution OnboardRDotNet.sln with a \"recent\" version of visual studio or MonoDevelop (Xamarin Studio)\nYou may want to look at and experiment with the projects in the following order:\n* HelloWorld\n* Sample1 is taken from the R.NET web site, a simple statistical T-test\n* Sample2 is mostly for issues diagnosis at this stage\n* WebApplicationRdn: Started as a way to diagnose often reported issues - since greatly expanded by skyguy94\n* Optimization: Adapted from my day work; simplified calibration and optimization problem. Shows various ways to call an R function including vectorized function evaluations.\n* Tutorial1: To Be Determined\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdotnet%2Frdotnet-onboarding","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frdotnet%2Frdotnet-onboarding","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdotnet%2Frdotnet-onboarding/lists"}