search for: dmurdoch

Displaying 20 results from an estimated 140 matches for "dmurdoch".

Did you mean: murdoch
2018 Jan 24
5
Why R should never move to git
...s-rpackage/manipulateWidget/. Last week I found a bug, so being a good community member, I put together a patch. Since the package lives on Github, I followed instructions to put together a "pull request": - I forked the main branch to my own Github account as <https://github.com/dmurdoch/manipulateWidget>. - I checked out my fork into RStudio. - I fixed the bug, and submitted the pull request <https://github.com/rte-antares-rpackage/manipulateWidget/pull/47>. Then I felt good about myself, and continued on with my work. Today I tracked down another bug, unrelated to...
2018 Jan 24
2
Why R should never move to git
...ginal, forked state of the repo. Branches keepclass2 through to keepclass5 are my attempts to do that. As far as I can see they are all the same as keepclass, which was branched from the head of the master branch of my fork. > > Are the two commits here your fixes? > https://github.com/dmurdoch/manipulateWidget/commits/master Those are both part of the first PR. There's a third commit in keepclass (and the other branches too...) If you or someone else tells me the magic commands I need to do what I want, I'll appreciate it. But the main point of my post is that this is some...
2018 Jan 25
4
Why R should never move to git
...id this, except that the "..." contains nothing, because I want this branch to continue. But now my problem is that I can't see any way to tell Github about this new branch. I ran git push origin upstreamMaster and got Total 0 (delta 0), reused 0 (delta 0) To https://github.com/dmurdoch/manipulateWidget * [new branch] upstreamMaster -> upstreamMaster but that branch doesn't show up in the Github web site. Any suggestions? Duncan Murdoch > > 4) open a fresh new PR from "patch2" (the first one is intact).
2003 Nov 24
8
Question about Unix file paths
Gabor Grothendieck pointed out a bug to me in list.files(..., full.name=TRUE), that essentially comes down to the fact that in Windows it's not always valid to add a path separator (slash or backslash) between a path specifier and a filename. For example, c:foo is different from c:\foo and there are other examples. I'm going to fix this, but I'm wondering whether the fix is
2004 Mar 21
4
writing text on graphics' window
Hi, Does anyone know of a method for writing text to the graphics window, where there is *no* plot? Basically, I have developed a 'significance test' and I would like the output on the graphics window to say something about the input parameters and the stats of the significance test. Any help would be appreciated. Cheers, Sam.
2018 Jan 24
0
Why R should never move to git
When you create a branch for your bug fix, don't create it off the previous fix. Create it off the original, forked state of the repo. Are the two commits here your fixes? https://github.com/dmurdoch/manipulateWidget/commits/master Gabor On Wed, Jan 24, 2018 at 11:17 PM, Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > Lately I've been doing some work with the manipulateWidget package, which > lives on Github at > https://github.com/rte-antares-rpackage/manipulateWidge...
2004 Jun 24
2
Packages of snippets? (was: A way to list only variables or functions?)
From: Duncan Murdoch <dmurdoch@pair.com> >I do understand the feeling of >writing a nice little function, and not knowing exactly what to do >with it: CRAN is crowded, and it does seem that an entire package >just to support one or two simple functions is a bit of overkill. >Can we work out a way to publish s...
2004 Jul 12
0
Where does R search when source() ?
...math.ethz.ch mailing list | > https://www.stat.math.ethz.ch/mailman/listinfo/r-help | > PLEASE do read the posting guide! | > http://www.R-project.org/posting-guide.html | | | | ------------------------------ | | Message: 3 | Date: Sun, 11 Jul 2004 07:58:06 -0400 | From: Duncan Murdoch <dmurdoch at pair.com> | Subject: Re: [R] where does R search when source()? | To: sdhyok at email.unc.edu | Cc: "R, Help" <r-help at stat.math.ethz.ch> | Message-ID: <6na2f0hb599ce32nrhnk09v17j6ur5kin0 at 4ax.com> | Content-Type: text/plain; charset=us-ascii | | On Sat, 10 Jul 2004...
2003 May 08
3
R crashes with package SJava; was Memory leakage?
...ublic Health 22-28 Princess Road West Leicester LE1 6TP Tel +44 116 252-5410 Fax +44 116 252-5423 Division of Medicine for the Elderly Department of Medicine The Glenfield Hospital Leicester LE3 9QP Tel +44 116 256-3643 Fax +44 116 232-2976 -----Original Message----- From: Duncan Murdoch [mailto:dmurdoch at pair.com] Sent: 03 May 2003 23:59 To: tshi at itsa.ucsf.edu Cc: r-help at stat.math.ethz.ch Subject: Re: [R] Memory leakage? On Sat, 03 May 2003 20:33:49 +0000, you wrote: >I haven't tried re-installing windows yet, because it seems to be a big task >for me and also I kind of doubt...
2018 Jan 25
3
Why R should never move to git
On 25/01/2018 7:44 AM, G?bor Cs?rdi wrote: > On Thu, Jan 25, 2018 at 12:34 PM, Duncan Murdoch > <murdoch.duncan at gmail.com> wrote: > [...] >> but that branch doesn't show up in the Github web site. > > It is right there: > https://github.com/dmurdoch/manipulateWidget/branches > >> Any suggestions? > > Personally I would suggest to call it master, because it is just > easier. Your master should correspond to the upstream master, and you > can do your own stuff in other branches. That makes sense, but I don't see a way...
2018 Jan 25
0
Why R should never move to git
...> Branches keepclass2 through to keepclass5 are my attempts to do that. As far > as I can see they are all the same as keepclass, which was branched from the > head of the master branch of my fork. >> >> >> Are the two commits here your fixes? >> https://github.com/dmurdoch/manipulateWidget/commits/master > > > Those are both part of the first PR. There's a third commit in keepclass > (and the other branches too...) > > If you or someone else tells me the magic commands I need to do what I want, > I'll appreciate it. But the main point o...
2004 Feb 04
3
Scoping bug in ftable() (PR#6541)
This bug shows up in ftable() in both r-patched and r-devel: > x <- c(1,2) > y <- c(1,2) > z <- c(1,1) > ftable(z,y) y 1 2 z 1 1 1 > ftable(z,x) x 1 z 1 2 Since x and y are identical, the two ftable results should be the same, but they are not. I've only been able to see this when the column variable is named "x", so it looks like a
2003 Oct 22
6
Something strange in cor.test in R-1.8.0 (PR#4718)
Full_Name: Ian Wilson Version: R-1.8.0 OS: Windows (but own compilation) Submission from: (NULL) (139.133.7.38) the p-value is incorrect for cor.test using method "spearman" in R-1.8.0. This was not the case in R-1.7.1. Version R-1.8.0 on Windows > cor.test(rnorm(50),rnorm(50),method="spearman") Spearman's rank correlation rho data: rnorm(50) and rnorm(50) S
2003 Jun 13
1
Documenting classes and methods: was Re: R-devel Digest, Vol 3, Issue 23
...uot; generic? With the proposed xml help system one could imagine quite sophisticated context sensitive help systems. Regards, John Marsland PS this has been a very useful debate for those of us enthusiastically using S4 methods. > -----Original Message----- > From: Duncan Murdoch [mailto:dmurdoch@pair.com] > Sent: 12 June 2003 18:54 > To: Kurt.Hornik@wu-wien.ac.at > Cc: r-devel@stat.math.ethz.ch; Gordon Smyth; John Chambers > Subject: Re: Documenting classes and methods: was [Rd] Re: R-devel > Digest, Vol 3, Issue 23 > > > On Mon, 9 Jun 2003 09:32:39 +0200, you wro...
2018 Jan 25
2
Why R should never move to git
...2 through to keepclass5 are my attempts to do that. As far >> as I can see they are all the same as keepclass, which was branched from the >> head of the master branch of my fork. >>> >>> >>> Are the two commits here your fixes? >>> https://github.com/dmurdoch/manipulateWidget/commits/master >> >> >> Those are both part of the first PR. There's a third commit in keepclass >> (and the other branches too...) >> >> If you or someone else tells me the magic commands I need to do what I want, >> I'll apprecia...
2018 Jan 25
4
Why R should never move to git
...a bug, so being a good community member, I put together a patch. >> >> Since the package lives on Github, I followed instructions to put together a >> "pull request": >> >> - I forked the main branch to my own Github account as >> <https://github.com/dmurdoch/manipulateWidget>. >> >> - I checked out my fork into RStudio. >> >> - I fixed the bug, and submitted the pull request >> <https://github.com/rte-antares-rpackage/manipulateWidget/pull/47>. >> >> Then I felt good about myself, and continued on with...
2004 Jul 12
1
RE: tail(<matrix>) column numbers
I also vote for the 'helpful' addition on row numbers based on the original matrix when no row names are present, with an optional argument to prevent this behaviour. -G > -----Original Message----- > From: Duncan Murdoch [mailto:dmurdoch@pair.com] > Sent: Monday, July 12, 2004 8:06 AM > To: Patrick Burns > Cc: Martin Maechler; Warnes, Gregory R; Prof Brian Ripley; > Kevin Wright; > r-devel@stat.math.ethz.ch; Peter Dalgaard > Subject: Re: tail(<matrix>) column numbers > > > On Sun, 11 Jul 2004 12:...
2018 Jan 25
0
Why R should never move to git
...rote: >> >> On Thu, Jan 25, 2018 at 12:34 PM, Duncan Murdoch >> <murdoch.duncan at gmail.com> wrote: >> [...] >>> >>> but that branch doesn't show up in the Github web site. >> >> >> It is right there: >> https://github.com/dmurdoch/manipulateWidget/branches >> >>> Any suggestions? >> >> >> Personally I would suggest to call it master, because it is just >> easier. Your master should correspond to the upstream master, and you >> can do your own stuff in other branches. > > &gt...
2003 Oct 10
1
R 1.8.0 Windows binaries uploaded
I've just uploaded the 1.8.0 binary build for Windows. It should be available on CRAN and the mirrors tomorrow. Duncan Murdoch _______________________________________________ R-announce at stat.math.ethz.ch mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-announce
2002 Dec 04
0
Re: Mailman password for R-help (and R-*) mailing lists?
I'm forwarding this to R-help since it might be of wider interest. I'm glad for your mail, Duncan! >>>>> "Duncan" == Duncan Murdoch <dmurdoch at pair.com> >>>>> on Wed, 04 Dec 2002 06:55:09 -0500 writes: Duncan> Hi Martin. I don't think my mailman password was Duncan> mailed to me. Indeed, it wasn't. I was wrong there. It *is* done monthly for *all* mailing lists that haven't disabled...