Tableau – R Integration
Together, R and Tableau could be extremely useful in today’s data science arena as together it can unravel any organization’s end to end information discovery needs.
R has become one of the foremost widely used statistical software packages among statisticians and researchers since it provides more than 10000 specialized packages. Tableau takes only seconds or minutes to visualize using a simple to use drag-and-drop interface.
Here in this blog, we will go through the steps of integrating R and Tableau.
Prerequisite to follow below steps: R and tableau is already installed
Step 1:
Inside R software, install Rserve package with below command.
install.package(Rserve)
Once the installation for the package is complete, we run the package with the command below.
library(Rserve);Rserve()
This will start a Server in the background irrespective of whether R console is open.
Step2:
Now we move to Tableau to perform connection to the server we just started.
While startup page, go to Help→ Settings and Performance → Manage External Service connection.
This will prompt a small window where server name is localhost and port 6311 is to be set.
Press test connection to get the successful message. And then press OK.
This will prompt a small window where server name is localhost and port 6311 is to be set.
Press test connection to get the successful message. And then press OK.
Now we see how the calculation happens with the help of Rserver.
Problem Statement: Calculate Total Expense done.
Solution:
Step3:
Go to Analysis Tab and select Create-Calculated-FieldNow write a Script which will run in R.
For my case the Script is:
SCRIPT_INT( ” ToExp <- .arg1 ” , SUM([Jan]+[Feb]+[Mar]) )
Explanation: we have SCRIPT_INT as the script will return integer type.
Test between “ ”, is the script running in Rserver. And .agr1 will take function SUM as value to process data.
A message displays when we Apply. Our script is pushed to Rserver and checked if the calculation is valid or not.
Press OK to save the script and come back to Tableau to visualize our query.
Step4:
Drag and Drop the Fields to Visualize data. Also, we can see our solution has created a field which we can drag and compare with other fields.
Solution: Total Expense is 75000Hope this clears how to run Rserver for calculation and Tableau to visualize data together.
Enroll for Machine Learning Training conducted by Acadgild and become a successful programmer.
Keep visiting www.acadgild.com for more updates on the technical and certification courses.