Displaying 4 results from an estimated 4 matches for "killalldevices".
2008 Mar 24
1
Running rpy produces the error message undefined symbol: KillAllDevices
...rpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.5/site-packages/rpy.py", line 134, in <module>
""" % RVERSION)
RuntimeError: /usr/lib/python2.5/site-packages/_rpy2070.so: undefined
symbol: KillAllDevices
RPy module can not be imported. Please check if your rpy
installation supports R 2.7.0. If you have multiple R versions
installed, you may need to set RHOME before importing rpy. For
example:
>>> from rpy_options import set_options
>>> set_opt...
2006 Aug 31
1
Overriding InitTempDir
For embedded projects, one may want to eliminate the per-session temp
directory created by InitTempDir() and just use a system-specific temp
directory. Here's my solution:
extern char *R_TempDir;
void my_InitTempDir()
{
char *tmp;
if (R_TempDir){
if (rmdir(R_TempDir) != 0){
perror("Fatal Error: could not remove R's TempDir!");
2013 Oct 12
1
[PATCH] minor suggestions for R-ints manual
...hics subsystems. Although there is
-provision for 24 subsystems, after 6 years only two exist, `base' and
+provision for 24 subsystems, since 2001 only two exist, `base' and
`grid'. The base subsystem is registered with the engine when @R{} is
initialized, and unregistered (via @code{KillAllDevices}) when an @R{}
session is shut down. The grid subsystem is registered in its
@@ -3797,7 +3797,7 @@
interactively.
Default: true.
@item _R_CHECK_VIGNETTES_NLINES_
-Maximum number of lines to show of the bottom of the output when reporting
+Maximum number of lines to show at the bottom of the ou...
2010 Sep 08
0
Correction to vec-subset speed patch
...T(attr = allocVector(INTSXP, 2));
INTEGER(attr)[0] = nrs;
-------------- next part --------------
Index: src/include/Defn.h
===================================================================
--- src/include/Defn.h (revision 52822)
+++ src/include/Defn.h (working copy)
@@ -1003,7 +1003,7 @@
void KillAllDevices(void);
SEXP levelsgets(SEXP, SEXP);
void mainloop(void);
-SEXP makeSubscript(SEXP, SEXP, int *, SEXP);
+SEXP makeSubscript(SEXP, SEXP, int *, SEXP, int);
SEXP markKnown(const char *, SEXP);
SEXP mat2indsub(SEXP, SEXP, SEXP);
SEXP matchArg(SEXP, SEXP*);
Index: src/main/subassign.c
=============...