Skip to content

Commit 3933ae6

Browse files
author
sagi
committed
UsingRDotNet: Fix .csproj and updated README.md
1 parent 8367898 commit 3933ae6

File tree

3 files changed

+7
-45
lines changed

3 files changed

+7
-45
lines changed

UsingRDotNet/Properties/AssemblyInfo.cs

-36
This file was deleted.

UsingRDotNet/README.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ This is just a basic sample to get started using R with Excel.
44

55
I followed these steps to create the add-in:
66

7-
1. Ensure that R is installed. In my Windows "Add or Remove Programs" list I see "R for Windows 3.02".
7+
1. Ensure that R is installed from https://cran.r-project.org/bin/windows/base/
8+
The bitness of the R installation must match that of Excel. Note that v4.1.3 is the last version to support 32bit.
89

910
2. Create a new "Class Library" project in Visual Studio.
1011

1112
3. In the NuGet package Manager Console, execute the commands:
1213

13-
PM> Install-Package Excel-DNA
14-
PM> Install-Package R.NET.Community
14+
PM> Install-Package ExcelDna.Addin
15+
PM> Install-Package R.NET
1516

1617
4. Add the sample code from AddIn.cs.
1718

@@ -22,8 +23,6 @@ I followed these steps to create the add-in:
2223

2324
## Other links
2425

25-
* The R project, including links to the R installation is at, http://www.r-project.org/.
26+
* The R project, including links to the R installation is at, http://www.r-project.org/
2627

27-
* The R.NET project is at http://rdotnet.codeplex.com/.
28-
29-
* A nice and more useful introduction to using R from Excel, using F#, was written by Natallie Baikevich and can be found at http://type-nat.ch/excel-dna-three-stories//
28+
* The R.NET project is at https://github.com/rdotnet/rdotnet

UsingRDotNet/UsingRDotNet.csproj

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66

77
<ItemGroup>
88
<PackageReference Include="ExcelDna.Addin" Version="*-*" />
9-
<PackageReference Include="R.NET.Community" Version="*-*" />
10-
<PackageReference Include="DynamicInterop" Version="*-*" />
9+
<PackageReference Include="R.NET" Version="*-*" />
1110
</ItemGroup>
1211

1312
</Project>

0 commit comments

Comments
 (0)