i am executing a r script from python and i want the output to be available in the python variable. how can i do that?
python script:
import subprocess 
def runR(id, lat, long):
    value = subprocess.popen("C:/R/R-3.2.0/bin/Rscript      E:/Personal/python/script.R --args "+id+" "+lat+" "+long , shell=True)
    print value
R script :
a = "Hello";
I want Hello to be availabe on the python variable value.
 
     
    