Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

333 results for “from:Bill Dunlap”

[off-topic] crossword
Bill Dunlap · Dec 12, 2024 · r-help

The New York Times crossword this morning had the clue (51 down, 5 letters) "Writes in C or R, say". -Bill [[alternative HTML version deleted]]

(no subject)
Bill Dunlap · Nov 4, 2020 · r-devel

Hi All, I am no longer with TIBCO and hope to be able to contribute more directly to R now. It will take a little while to set up a build environment and to start working on some bugzilla issues...

Bug in list.files(full.names=T)
Bill Dunlap · Dec 20, 2021 · r-help

> > > Why would one ever *add* a final unneeded path separator, > > unless one wanted it? > Good question, but it is common for Windows installer programs to add a terminal backslash to PATH entries. E.g., on my Windows laptop I get...

DOUBT
Bill Dunlap · Mar 21, 2023 · r-help

The HH Size is the problem - it doesn't follow R's rules for a name. Put backticks around it: `HH Size`. -Bill On Tue, Mar 21, 2023 at 9:47?AM Nandini raj <nandiniraj9971 at gmail.com> wrote: > Respected...

library(hms)
Bill Dunlap · Mar 17, 2021 · r-help

install.packages("hms") A 'library' is a directory (aka folder) that contains installed 'packages'. I.e., one installs packages into a library, but one does not install a library. -Bill On Wed, Mar 17, 2021 at 10:08 AM Gregory...

Use of all/any
Bill Dunlap · Oct 26, 2007 · r-devel

On Fri, 26 Oct 2007, Bill Dunlap wrote: > In Splus I use > rapply(expr, classes="call", > f=function(x)if(isComparisonOfAnyOrAll(x))deparseText(x)) > to rattle down an an expression tree looking for this pattern. > However's R's rapply...

[R-pkg-devel] Error on Solaris 10 'memory not mapped'
Bill Dunlap · Apr 1, 2021 · r-package-devel

Have you run the offending examples under valgrind on Linux with gctorture(TRUE)? -Bill On Thu, Apr 1, 2021 at 11:51 AM Zhang, Wan <wanz63 at live.unc.edu> wrote: > > Hello, > > In our package ?BET? version 0.3.4...

codetools::checkUsage should ignore expression in Quote(expr) (PR#10719)
Bill Dunlap · Feb 6, 2008 · r-devel

Full_Name: Bill Dunlap Version: R version 2.7.0 Under development (unstable) (2008-02-05 r44340) OS: Linux Submission from: (NULL) (76.28.245.14) codetools::checkUsage() should treat the Quote() function just as it does the quote() and...

closing View windows after multiple View(x) crashes
Bill Dunlap · Jul 29, 2008 · r-devel

On Tue, 29 Jul 2008, Ben Bolker wrote: > That works like a charm. Thanks! > > Ben Bolker Good. Here is the patch I used. (I didn't send it earlier because my code still had a bunch of Rprintf calls in...

bug in R 2.7.0 (PR#11497)
Bill Dunlap · May 22, 2008 · r-devel

On Thu, 22 May 2008, Peter Dalgaard wrote: > More succinctly, parse() from stdin() seems to be broken: > > > parse() > ?a > expression() > > This was not the case in January (this was the older version I had lying > around): > > R version 2.6...

*.Rd file: space after topic in "\alias{topic }" should be ignored (PR#9914)
Bill Dunlap · Sep 17, 2007 · r-devel

Full_Name: Bill Dunlap Version: R version 2.6.0 Under development (unstable) (2007-07-26 r42329) OS: Linux Submission from: (NULL) (24.16.101.199) If a *.Rd file has an \alias{topic } with a space between 'topic' and...

capture error messages from loading shared objects
Bill Dunlap · Nov 28, 2023 · r-devel

If you would like to save the error message instead of suppressing it, you can use tryCatch(message=function(e)e, ...). -BIll On Tue, Nov 28, 2023 at 3:55?AM Adrian Dusa <dusa.adrian at unibuc.ro> wrote: > Once...

readBin(what="character", n=overcount)->extra "" in result (PR#9361)
Bill Dunlap · Nov 13, 2006 · r-devel

Full_Name: Bill Dunlap Version: 2.4.0 OS: Windows XP Submission from: (NULL) (208.252.71.182) When I use readBin() to read an unknown number of null-terminated strings from a file by supplying an overcount as the...

split element vector
Bill Dunlap · Aug 6, 2021 · r-help

unlist(strsplit(vect, "\n")) On Fri, Aug 6, 2021 at 7:13 AM Luigi Marongiu <marongiu.luigi at gmail.com> wrote: > Hello, > I have a vector that contains some elements with concatenated values, such > as: > ``` > > vect > [1] "name_1" > [2...

Windows path backward slash
Bill Dunlap · Dec 24, 2020 · r-help

The "\n" is probably not in the file name. Does omitting it from the call to str_c help? -Bill On Thu, Dec 24, 2020 at 6:20 AM Anbu A <rquestion2020 at gmail.com> wrote: > Hi All, > I am...

sequence(c(2, 0, 3)) produces surprising results, would like output length to be sum(input) (PR#9811)
Bill Dunlap · Jul 26, 2007 · r-devel

Full_Name: Bill Dunlap Version: 2.5.0 OS: Linux Submission from: (NULL) (70.98.76.47) sequence(nvec) is documented to return the concatenation of seq(nvec[i]), for i in seq(along=nvec). This produces inconvenient (for me...

inserting relative path - purrr
Bill Dunlap · Mar 30, 2022 · r-help

?file.path -Bill On Wed, Mar 30, 2022 at 3:46 PM Jeff Reichman <reichmanj at sbcglobal.net> wrote: > R-help > > Having to perform an iteration so I'm looking at the purr package. The > problem I had was the...

gsub + backslashes
Bill Dunlap · Apr 24, 2006 · r-devel

On Mon, 24 Apr 2006, Prof Brian Ripley wrote: > On Mon, 24 Apr 2006, Torsten Hothorn wrote: > > > > > Dear developeRs, > > > > I thought that backslashes can be escaped in the usual way (and I think I > > did this before) but I can...

is.na()<- on a character vector
Bill Dunlap · Dec 16, 2022 · r-help

I think that is.na(x) <- i generally does the same to x as does x[i] <- NA I say 'generally' because some classes (e.g., numeric_version) do not allow x[i]<-NA but do allow is.na(x...

transform help file
Bill Dunlap · Mar 14, 2022 · r-devel

See Bugzilla issue #17890 for some discussion on this. https://bugs.r-project.org/show_bug.cgi?id=17890 -Bill On Mon, Mar 14, 2022 at 10:17 AM Gabor Grothendieck <ggrothendieck at gmail.com> wrote: > It seems transform can...

Can't find what you're looking for? Try searching with Google .