Calling Custom functions from Python using rpy2

后端 未结 3 1166
情书的邮戳
情书的邮戳 2020-12-09 05:20

Is there a way to call functions defined in a file say myfunc.r

---------------myfunc.r --------------
myfunc = function(){
  return(c(1,2,3,4,5,6,7,8,9,10)         


        
3条回答
  •  生来不讨喜
    2020-12-09 05:39

    There are features in rpy2 that should help making this cleaner than dumping objects into the global workspace.

    from rpy2.robjects.packages import STAP
    # if rpy2 < 2.6.1 do:
    # from rpy2.robjects.packages import SignatureTranslatedAnonymousPackage
    # STAP = SignatureTranslatedAnonymousPackage
    with open('myfunc.r', 'r') as f:
        string = f.read()
    myfunc = STAP(string, "myfunc")
    

    The objects in the R file can now be accessed with myfunc.myfunc and myfunc.getname.

    Check the documention about importing arbitrary R code as a package (older doc here).

提交回复
热议问题