search for: data61

Displaying 9 results from an estimated 9 matches for "data61".

Did you mean: data16
2020 Apr 10
2
missing binaries in R-devel windows snapshot 78175
> On Thu, Apr 9, 2020 at 12:44 PM Bravington, Mark (Data61, Hobart) > <Mark.Bravington at data61.csiro.au> wrote: > > > > The "r-devel snapshot build" 78175 on Windows--- a dot-exe installer--- seems to be missing a couple of files in its bin/i386 folder: Rterm.exe and Rgui.exe. Both are present in its bin/x64 folder (and in...
2020 Apr 10
3
missing binaries in R-devel windows snapshot 78175
>>>>> Jeroen Ooms >>>>> on Fri, 10 Apr 2020 08:54:39 +0200 writes: > On Fri, Apr 10, 2020 at 2:42 AM Bravington, Mark (Data61, > Hobart) <Mark.Bravington at data61.csiro.au> wrote: >> >> > On Thu, Apr 9, 2020 at 12:44 PM Bravington, Mark >> (Data61, Hobart) > <Mark.Bravington at data61.csiro.au> >> wrote: >> > > >> > > The &q...
2020 Apr 10
0
missing binaries in R-devel windows snapshot 78175
On Fri, Apr 10, 2020 at 2:42 AM Bravington, Mark (Data61, Hobart) <Mark.Bravington at data61.csiro.au> wrote: > > > On Thu, Apr 9, 2020 at 12:44 PM Bravington, Mark (Data61, Hobart) > > <Mark.Bravington at data61.csiro.au> wrote: > > > > > > The "r-devel snapshot build" 78175 on Windows--- a dot-exe...
2020 Apr 09
2
missing binaries in R-devel windows snapshot 78175
The "r-devel snapshot build" 78175 on Windows--- a dot-exe installer--- seems to be missing a couple of files in its bin/i386 folder: Rterm.exe and Rgui.exe. Both are present in its bin/x64 folder (and in the i386 folder for current R). NB the lack of i386/Rterm.exe affects even the x64 version, since package installation seems to use it for testing loadability under both architectures
2016 Dec 12
2
why does parent.frame() cycle when called from inside capture.output()?
Hello R devel/help, I ran into this strange behavior: # showstack is supposed to walk through the stack of parent # environments when it is called: showstack = function() { env = environment() for(i in 1:12) { env = do.call(parent.frame, list(), env=env) print(env) } } # a simple chain of functions: g3=function(t) showstack()
2016 Dec 12
2
why does parent.frame() cycle when called from inside capture.output()?
Hello R devel/help, I ran into this strange behavior: # showstack is supposed to walk through the stack of parent # environments when it is called: showstack = function() { env = environment() for(i in 1:12) { env = do.call(parent.frame, list(), env=env) print(env) } } # a simple chain of functions: g3=function(t) showstack()
2006 Sep 13
2
recursive methods for concatenating sets of files
...im("t (57).txt", quote="", as.is=TRUE) data58 <-read.delim("t (58).txt", quote="", as.is=TRUE) data59 <-read.delim("t (59).txt", quote="", as.is=TRUE) data60 <-read.delim("t (60).txt", quote="", as.is=TRUE) data61 <-read.delim("t (61).txt", quote="", as.is=TRUE) data62 <-read.delim("t (62).txt", quote="", as.is=TRUE) data63 <-read.delim("t (63).txt", quote="", as.is=TRUE) data64 <-read.delim("t (64).txt", quote="",...
2016 Dec 12
0
[RE: why does parent.frame() cycle when called from inside capture.output()?]
...rking "desubN" (see the attachment on my original message, and this one). I don't really have a good understanding of *why* it now works, and why the original version didn't work... Thanks again Mark. Also, nice hacking. Frederick ----- Forwarded message from Mark.Bravington at data61.csiro.au ----- Date: Mon, 12 Dec 2016 06:20:17 +0000 From: Mark.Bravington at data61.csiro.au To: frederik at ofb.net Subject: RE: [Rd] why does parent.frame() cycle when called from inside capture.output()? X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_V...
2017 Mar 06
1
can we override "if" in R?
I can't comment for Da, but one example where the ability to make 'if' generic would have been desirable: A couple of years ago I wrote S3 classes and methods for 1-byte integers and logicals stored as raw vectors, in order to handle massive amounts of genetic data (by the standards of the day). Everything worked pretty nicely, ie I could "methodize" just about everything I