R in SharePoint

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

+6
source share
2 answers

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

+2
source

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

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

+1
source

Source: https://habr.com/ru/post/918811/


All Articles