search for: currentdevice

Displaying 5 results from an estimated 5 matches for "currentdevice".

2004 Nov 12
2
Boot from CD -> system + data on USB storage
Hi, I am looking for a solution to boot MY system on any PC. To store most of the system and all of my data I want to use an USB storage (in my case an external USB harddisk (2.0 capable)). Since booting off an USB device is not an universal thing I would prefer to have a boot disk with a minimal system - just enough to load most (all?) of the system from the attached USB device. Is this an
2003 Jul 07
0
feature enhancement request & patch: dev.control(displaylist='en (PR#3424)
...00000000 -0500=0A= +++ R-patched-grw/src/main/plot.c 2003-07-07 11:47:16.000000000 = -0400=0A= @@ -51,9 +51,13 @@=0A= =0A= SEXP do_devcontrol(SEXP call, SEXP op, SEXP args, SEXP env)=0A= {=0A= + int listFlag =3D LOGICAL(CAR(args))[0];=0A= checkArity(op, args);=0A= - inhibitDisplayList(CurrentDevice());=0A= - return R_NilValue;=0A= + if(listFlag)=0A= + enableDisplayList(CurrentDevice());=0A= + else=0A= + inhibitDisplayList(CurrentDevice());=0A= + return ScalarLogical(listFlag);=0A= }=0A= =0A= SEXP do_devcopy(SEXP call, SEXP op, SEXP args, SEXP env)=0A= ------_=_NextPa...
2005 Nov 18
1
using a factor as col argument in plot:
Dear R core team Using the following code produces an empty plot (similar to col = NA): > plot(1:9, col = factor(rep(1:3,3), labels = c("red", "blue", "black"))) My question: Shouldn't one get at least a warning (or an error) if one tries to use a factor as col argument? Thanks for an answer. Regards, Christoph Buser
2002 May 28
0
(PR#1605)When dev.list() is NULL, dev.control() causes core dump
...in/plot.c: > > PATCH BEGIN > *** plot.c.orig Tue Dec 4 23:43:43 2001 > --- plot.c Sun May 26 11:06:25 2002 > *************** > *** 52,58 **** > SEXP do_devcontrol(SEXP call, SEXP op, SEXP args, SEXP env) > { > checkArity(op, args); > ! inhibitDisplayList(CurrentDevice()); > return R_NilValue; > } > > --- 52,60 ---- > SEXP do_devcontrol(SEXP call, SEXP op, SEXP args, SEXP env) > { > checkArity(op, args); > ! if(!NoDevices()){ > ! inhibitDisplayList(CurrentDevice()); > ! } > return R_NilValue; >...
2000 Jan 17
1
lwd patches for "contour"
...} ! /* contour(x,y,z, levels, col, lty) */ SEXP do_contour(SEXP call, SEXP op, SEXP args, SEXP env) { ! SEXP oargs, c, x, y, z, col, lty; ! int i, j, nx, ny, nc, ncol, nlty; int ltysave, colsave; double atom, zmin, zmax; char *vmax, *vmax0; DevDesc *dd = CurrentDevice(); --- 396,409 ---- } } ! /* contour(x,y,z, levels, col, lty, lwd) */ SEXP do_contour(SEXP call, SEXP op, SEXP args, SEXP env) { ! SEXP oargs, c, x, y, z, col, lty, lwd; ! int i, j, nx, ny, nc, ncol, nlty, nlwd; int ltysave, colsave; + double lwdsave; double a...