search for: rsintern

Displaying 4 results from an estimated 4 matches for "rsintern".

Did you mean: csintern
2002 Dec 23
4
calling R from python (fwd)
...R/library/RSPython/include') >>> sys.path.append('/usr/local/lib/R/include/R_ext') >>> import RS Traceback (most recent call last): File "<stdin>", line 1, in ? File "/usr/local/lib/R/library/RSPython/Python/RS.py", line 1, in ? import RSInternal ImportError: /usr/local/lib/R/library/RSPython/libs/RSInternal.so: undefined symbol: R_GlobalEnv >>> import RS >>> RS.call("rnorm", 10); Traceback (most recent call last): File "<stdin>", line 1, in ? AttributeError: 'RS' module has no attribu...
2005 Jan 17
1
problem installing RSPython
...library/RSPython/Python/RS.py", line 69, in ? library("RSPython") File "/usr/lib/R/library/RSPython/Python/RS.py", line 58, in library return(call("library", name)); File "/usr/lib/R/library/RSPython/Python/RS.py", line 21, in call return RSInternal.call(name, args, other, convert, ref) RuntimeError: error in calling R: Error in library("RSPython") : .First.lib failed for 'RSPython' Hmm... But the installation is ok, except for these warnings: $more err PythonCall.c: In function `RPy_get': PythonCall.c:305: warning: pa...
2005 Mar 18
2
RSPython
Hi, where is the latest version of the RSPython library? Is it compatible with the current stable release of R? Thanks, Darren
2009 Sep 08
0
RSPython can't find module
.... I had to get rid of the extra comma in the PythonPath function in Python.S: .PythonPath <- function(path=NULL, merge = TRUE) { dirSep <- ifelse(R.version$os == "Win32", ";", ":",) (remove last comma before bracket) and I had to manually copy RSPython.so to RSInternal.so in the libs subdirectory of my RSPython installation. Now RSPython seems to load up OK, with a couple of warnings: > require(RSPython) Loading required package: RSPython Initialized R-Python interface package. Warning messages: 1: In .PythonInit() : the Python callback manager has bee...