I have a python script which takes some 5 arguments( a filename, 3 int values and 2 float values). I need to call this python script from R. How can I do that. I am trying to us
There is a small typo in the great previous answer. The right code is the following:
system('python test.py hello world', wait = FALSE)
where wait is FALSE (not wait=Flase or wait=False)