user1302169
user1302169

Reputation: 71

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?

Upvotes: 7

Views: 2454

Answers (2)

Bryan
Bryan

Reputation: 3451

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?

Upvotes: 3

John
John

Reputation: 43209

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

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

Upvotes: 1

Related Questions