Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

R in SharePoint

What's the best way to have R functionality in MS SharePoint? Would RExcel work if I import an Excel sheet in SharePoint using Excel Services? Any other options?

like image 581
user1302169 Avatar asked Jun 23 '12 03:06

user1302169


People also ask

Can R connect to SharePoint?

The Microsoft365R package makes it easy to connect R with Outlook, Teams, OneDrive, and SharePoint.

What is Microsoft R office?

Microsoft R Open is the enhanced distribution of R from Microsoft Corporation. It is a complete open source platform for statistical analysis and data science.

What is Microsoft365R?

Microsoft365R extends the interface to the Microsoft Graph API provided by the AzureGraph package to provide a lightweight yet powerful interface to SharePoint and OneDrive, with support for Teams and Outlook soon to come.

How do I find the URL of a SharePoint file?

Here is another way to get the direct URL of any file in SharePoint Online. Just select the file >> Open the document information panel by clicking on the “i” icon and clicking on the little copy icon under “Path”! This gets you the direct URL of the document in your clipboard!


2 Answers

If you have SharePoint you must have a SQL Server license, thus why not make a table or database called R_DataAnalysis and then use PowerPivot or PowerView with SSRS to display your data?

like image 106
Bryan Swan Avatar answered Oct 06 '22 19:10

Bryan Swan


R exports to flat file very easily with: write.csv(dataframe,'someFile.csv')

These can easily be imported for use in SharePoint BI functionality.

like image 40
John Avatar answered Oct 06 '22 18:10

John