"Marc Schwartz (via MN)" <[EMAIL PROTECTED]> writes:
> On Fri, 2006-09-15 at 16:05 -0500, Jeffrey Horner wrote:
> > Forgive me, but since it's Friday and I've been thinking about command
> > line options lately, I thought I'd find out who came up with the name of
> > the --vanilla argument for R
On Fri, 2006-09-15 at 16:05 -0500, Jeffrey Horner wrote:
> Forgive me, but since it's Friday and I've been thinking about command
> line options lately, I thought I'd find out who came up with the name of
> the --vanilla argument for R. From the svn log:
>
> -
Forgive me, but since it's Friday and I've been thinking about command
line options lately, I thought I'd find out who came up with the name of
the --vanilla argument for R. From the svn log:
r2509 | maechler | 1998-10-10 1
On 9/15/06, Martin Maechler <[EMAIL PROTECTED]> wrote:
> > "DeepS" == Deepayan Sarkar <[EMAIL PROTECTED]>
> > on Fri, 15 Sep 2006 12:22:15 -0700 writes:
>
> DeepS> Hi, since lattice uses nested lists in various
> DeepS> situations, it has had an unexported function called
>
> If a list is used to store "defaults" and you want a safe way to
> change only a few of the values...
> I presume you use this for manipulating the settings of lattice
> parts ?
I use something similar in ggplot (except not recursive):
defaults <- function(x, y) {
c(x, y[setdiff(names(
> "DeepS" == Deepayan Sarkar <[EMAIL PROTECTED]>
> on Fri, 15 Sep 2006 12:22:15 -0700 writes:
DeepS> Hi, since lattice uses nested lists in various
DeepS> situations, it has had an unexported function called
DeepS> updateList for a while, which looks like
>> > lattice
Hi,
since lattice uses nested lists in various situations, it has had an
unexported function called updateList for a while, which looks like
> lattice:::updateList
function (x, val)
{
if (is.null(x))
x <- list()
if (!is.list(x))
stop("x must be NULL or a list")
if (!is
On Fri, 2006-09-15 at 12:43 -0500, Marc Schwartz (via MN) wrote:
> On Fri, 2006-09-15 at 12:12 -0500, Kevin Wright wrote:
> > R has had the ability to generate pdfs with transparent colors for a
> > couple of years now using pdf(..., version="1.4").
> >
> > By default, Sweave uses just 'pdf' (with
On Fri, 2006-09-15 at 12:12 -0500, Kevin Wright wrote:
> R has had the ability to generate pdfs with transparent colors for a
> couple of years now using pdf(..., version="1.4").
>
> By default, Sweave uses just 'pdf' (without version 1.4), so a hack is
> needed when using Sweave to create pdfs wi
R has had the ability to generate pdfs with transparent colors for a
couple of years now using pdf(..., version="1.4").
By default, Sweave uses just 'pdf' (without version 1.4), so a hack is
needed when using Sweave to create pdfs with transparent colors. See
http://tolstoy.newcastle.edu.au/R/hel
The document on developer.r-project.org/howMethodsWork.pdf explains why
the two methods are equally close. Please (re)read it.
If you know what methods you want for mixing the two objects, you must
either say so or arrange the classes in an inheritance that includes
both classes.
Robin Hankin
Hello everybody
R version 2.4.0 alpha (2006-09-15 r39323), MacOSX 10.4.7
Next S4 problem.
I have "brob" objects that are large real numbers, and now I want "glub"
numbers that are to be a pair of glubs that represent complex numbers.
I want to define binary operator "+" so that if either the l
Dear all,
I would like to create new version (for R >= 2.0.0) of my old libraries
(under Windows XP).
The conversion of FORTRAN source to dll file is OK (via Rcmd SHLIB ) but
the command
Rcmd.exe build pkgdirs
did not create the two files .rdb and .rdx of the R functions (Warning
message
Parlamis Franklin wrote:
> I am having a bit of a struggle deciding when to use attributes with
> S4 objects. Clearly the 'class' attribute will always be present.
> But it is not clear to me whether the architects of the methods
> package intend that other attributes, such as 'names', will
Full_Name: Steven Wilder
Version: 2.3.1
OS: Windows XP
Submission from: (NULL) (129.67.45.165)
The help on title help("title") states
xlab: X axis label using font and character expansion
'par("font.axis")' and color 'par("col.axis")'.
but these have no effect, font.lab and col.lab sho
Martin Maechler skreiv:
> Since I've now seen the code of summary.default in S-plus 6.2,
> I'm not in a good position to propose a code change here ---
> unless Insightful ``donates'' their 3 lines of implementation to
> R {which I think would be quite fair given the recent flurry of
> things the
Duncan Murdoch <[EMAIL PROTECTED]> writes:
> >> > substitute(function(a=a) 1, list(a=quote(foo)))
> >> function(a = a) 1
> >
> >a bug for sure
>
> Yes.
Hmm... The issue is that the argument to `function` is a pairlist (not
LANGSXP), and we don't recurse into those. Any R object can turn up
> "Simone" == Simone Giannerini <[EMAIL PROTECTED]>
> on Thu, 14 Sep 2006 11:14:51 +0200 writes:
Simone> Dear all, the number of significant digits in
Simone> summary default is
Simone> digits = max(3, getOption("digits") - 3)
Simone> on my platform this results to be
18 matches
Mail list logo