Displaying 2 results from an estimated 2 matches for "sxr".
Did you mean:
str
1997 May 11
2
R-alpha: Logarithmic scales
...(xt(x1[i % nx1])), YMAP(yt(y1[i % ny1])));
GEndPath();
}
}
2) rect() does not work either. Unfortunately, do_rect() in "plot.c"
overrides the yt() function... What about this (lines 983-1031):
SEXP do_rect(SEXP call, SEXP op, SEXP args, SEXP env)
{
SEXP sxl, sxr, syb, sys, col, lty, border;
double *xl, *xr, *yb, *ys;
int i, n, nxl, nxr, nyb, nys;
int ncol, nlty, nborder;
int colsave, ltysave;
GCheckState();
if(length(args) < 4) errorcall(call, "too few arguments\n");
xypoints(call, args, &n);
sxl = CAR(ar...
1997 Jul 30
0
R-alpha: line types
...g Tue Jul 29 16:43:34 1997
--- plot.c Tue Jul 29 16:51:02 1997
***************
*** 875,880 ****
--- 875,883 ----
GSavePars();
+ if(nlty && INTEGER(lty)[i % nlty] != NA_INTEGER) GP->lty = INTEGER(lty)[i % nlty];
+ else GP->lty = DP->lty;
+
xl = REAL(sxl);
xr = REAL(sxr);
yb = REAL(syb);
Benjamin Bolker Dep't of Ecology and Evolutionary Biology,
ben@eno.princeton.edu Princeton University
tel: (609) 258-6886, fax: (609) 258-1334
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
r-devel mailing list -- Read htt...