Reputation: 71
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
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
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