Search Discussions
-
In November, we had a "bug repository conversation" with Peter Hagerty and myself: https://bugs.r-project.org/bugzilla/show_bug.cgi?id065 where the bug report title started with --- "exists" is a ...
Martin Maechler
Jan 8, 2015 at 9:16 am
Jan 9, 2015 at 7:56 pm -
I have just uploaded to CRAN a new version 3.2.0.1948 of Rtools for Windows. This will become visible there in a few hours, and be copied to mirrors thereafter. People who want to build packages that ...
Duncan Murdoch
Jan 7, 2015 at 4:00 pm
Jan 12, 2015 at 5:40 pm -
CRAN has a package of mine in upload limbo because it failed UBSAN. I am not entirely ignorant on the topic of sanitizers and SAN / ASAN / UBSAN; we created not one but two Docker containers with ...
Dirk Eddelbuettel
Jan 13, 2015 at 3:30 pm
Jan 18, 2015 at 3:53 pm -
Hi, Current implementation: setequal <- function (x, y) { x <- as.vector(x) y <- as.vector(y) all(c(match(x, y, 0L) 0L, match(y, x, 0L) 0L)) } First what about replacing 'match(x, y, 0L) 0L' and ...
Hervé Pagès
Jan 6, 2015 at 9:02 pm
Jan 9, 2015 at 6:21 am -
Hi, I am dealing with very large datasets and it takes a long time to save a workspace image. The options to save compressed data are: "gzip", "bzip2" or "xz", the default being gzip. I wonder if ...
Stewart Morris
Jan 15, 2015 at 12:45 pm
Jan 15, 2015 at 10:18 pm -
R CMD build fails with recent R-devel because it is looking for texi2dvi in /usr/local/bin, but on this system, MacTex has installed it in /usr/bin. $ R CMD build IRanges * checking for file ...
Dan Tenenbaum
Jan 13, 2015 at 12:50 am
Jan 13, 2015 at 4:47 am -
In the documentation the closed thing I see to an explanation of this is that ?detach says "Unloading some namespaces has undesirable side effects" Can anyone explain why unloading tseries will load ...
Paul Gilbert
Jan 8, 2015 at 3:45 pm
Jan 9, 2015 at 9:41 pm -
Dear all, I am getting an R CMD check warning about the PDF manual. I am having a hard time finding out what is wrong, here is the log of the Rd2pdf call. The full check (and other) log is at ...
Gábor Csárdi
Jan 8, 2015 at 10:18 pm
Jan 9, 2015 at 3:20 pm -
I am using 32-bit R 3.1.2 on Windows 7. I recently conducted an `R CMD check --as-cran` on a recently-developed package and received only the 'New submission' note. Research on StackOverflow and on ...
Steven Ranney
Jan 3, 2015 at 8:49 pm
Jan 4, 2015 at 12:44 am -
I've been implementing a wrapper to the 2011 Fortran version of L-BFGS-B. In optim(), R uses a C translation of a Fortran version (the version number does not appear to be documented by the original ...
Prof J C Nash (U30A)
Jan 18, 2015 at 2:03 pm
Jan 18, 2015 at 2:56 pm -
Dear all, I am trying to benchmark code that occasionally prints on the screen and I want to suppress the printing. Is there an idiom for this? If I do sink(tempfile) microbenchmark(...) sink() then ...
Gábor Csárdi
Jan 2, 2015 at 5:02 pm
Jan 2, 2015 at 9:20 pm -
Just wanted to start a discussion on whether R could ship with more appropriate GC parameters. Right now, loading the recommended package Matrix leads to: used (Mb) gc trigger (Mb) max used (Mb) ...
Michael Lawrence
Jan 15, 2015 at 11:55 pm
Jan 18, 2015 at 7:40 am -
I maintain the package affylmGUI. It works when installed on many previous versions of R. I have today tested exactly the same code under R-2.15.3, R-3.0.2, R-3.1.0, R-3.1.1, R-3.1.2 and R-devel. I ...
Keith Satterley
Jan 14, 2015 at 5:50 am
Jan 18, 2015 at 4:17 am -
Dear R developers, when running R CMD check, the R Under development (unstable) (2015-01-13 r67453) gives me the following NOTE: cbind.fsets: possible error in list(...): ... used in a situation ...
Michal Burda
Jan 14, 2015 at 7:42 am
Jan 14, 2015 at 1:30 pm -
The following code: res <- gsub("(*UCP)\\b(i)\\b", "", "nhgrimelanomaclass", perl = TRUE) results in: Error in gsub(sprintf("(*UCP)\\b(%s)\\b", "i"), "", "nhgrimelanomaclass", : invalid regular ...
Dan Tenenbaum
Jan 7, 2015 at 11:25 pm
Jan 8, 2015 at 2:57 pm -
Have a look at the following, taken from base::rank: ... if (!is.na(na.last) && any(nas)) { yy <- integer(length(x)) # <~~~~~~~~~ storage.mode(yy) <- storage.mode(y) # <~~~~~~~~ yy <- NA NAkeep <- ...
Arunkumar Srinivasan
Jan 8, 2015 at 12:46 pm
Jan 8, 2015 at 2:37 pm -
Hello. I've compiled R on Windows many times, and this is the first time I've seen this error. While running make check-all (and using testInstalledBasic("both")), the lm-tests routines fail, and, as ...
Avraham Adler
Jan 7, 2015 at 6:24 am
Jan 7, 2015 at 4:35 pm -
Dear R friends I wanted a function to make a simple percent table that would be easy for students to use. The goal originally was to have a simple thing people would call like this pctable(rowvar, ...
Paul Johnson
Jan 16, 2015 at 11:02 pm
Jan 16, 2015 at 11:21 pm -
Given a large data.frame, a function trains a series of models by looping over two steps: 1. Create a model-specific subset of the complete training data 2. Train a model on the subset data The ...
Christian Sigg
Jan 15, 2015 at 5:37 pm
Jan 15, 2015 at 7:43 pm -
Hi all, just installed the current version of R-devel (2015-01-13 r67453) from CRAN. Package checking via CMD check suddenly prints a lot of notes that complain of ... used in a situation where it ...
Peter Langfelder
Jan 15, 2015 at 2:15 am
Jan 15, 2015 at 6:40 am -
When doing repeated regressions on large data sets, I'm finding that the time spent on garbage collection often exceeds the time spent on the regression itself. Consider this test program which I'm ...
Nathan Kurz
Jan 9, 2015 at 9:31 am
Jan 11, 2015 at 7:25 pm -
Hello, When I try to install Rtools in the usual way into C:\Rtools on a new Windows 8.1 desktop it stalls near the beginning of the "Extracting files..." step. The Task Manager Status for the Setup ...
Dominick Samperi
Jan 6, 2015 at 5:59 am
Jan 6, 2015 at 7:38 am -
Dear R users, I would need some help in building R using minGW in windows 8.1. After using the command *configure *(./configure --enable-R-shlib --with-readline=no --with-x=no), I use the command ...
Edoardo Baldoni
Jan 2, 2015 at 5:33 pm
Jan 2, 2015 at 8:47 pm -
Hi All, I've gotten a number of reports from users about gplots::heatmap.2 generating 'node stack overflow' errors. As it turns out, these errors originate in stats:::plotNode, and are triggered when ...
Gregory R. Warnes
Jan 1, 2015 at 11:35 pm
Jan 2, 2015 at 6:26 pm -
41;309;0c Why does debug() enter Browse[3] here at all, and why does it happen the I think this is the result of debugging being implemented by setting a flag in the environment of the function being ...
Radford Neal
Jan 1, 2015 at 2:49 pm
Jan 1, 2015 at 4:00 pm -
git has an interface for cloning SVN repositories into git which some users might decide to use. For those users' surprise, the repository will always fail to build on svnonly target and it will exit ...
Felipe Balbi
Jan 13, 2015 at 5:00 am
Jan 13, 2015 at 5:00 am -
I believe the implementation of utils::URLencode is non-compliant with RFC 3986, which it claims to implement (http://tools.ietf.org/html/rfc3986). Specifically, its percent encoding uses lowercase ...
Thomas J. Leeper
Jan 11, 2015 at 1:34 pm
Jan 11, 2015 at 1:34 pm -
Warning message: In quartz() : Quartz device is not available on this platform Should this have generated an error instead? to: Error in .External2(C_X11, d$display, d$width, d$height, ...
Henrik Bengtsson
Jan 11, 2015 at 1:04 am
Jan 11, 2015 at 1:04 am -
There was recently a discussion here on how to tell if a number was integral. Did that prod someone into change as.hexmode in R-3.1.2 so that it aborts if given a number to big to fit into a 32-bit ...
William Dunlap
Jan 9, 2015 at 10:50 pm
Jan 9, 2015 at 10:50 pm -
I have setup a Solaris server to test packages before submitting to CRAN, in order to catch problems that might not reveal themselves on Fedora, Debian, OSX or Windows. The machine runs a Solaris ...
Jeroen Ooms
Jan 8, 2015 at 8:52 pm
Jan 8, 2015 at 8:52 pm -
Currently the help for UCBAdmissions has a link to Michael Friendly's old faculty page, <http://www.math.yorku.ca/SCS/friendly.html This goes to a redirect page. The new address is datavis.ca. As it ...
John Christie
Jan 1, 2015 at 4:56 pm
Jan 1, 2015 at 4:56 pm
Group Overview
group | r-devel |
categories | r |
discussions | 31 |
posts | 117 |
users | 46 |
website | r-project.org |
irc | #r |
46 users for January 2015
Archives
- June 2016 (34)
- May 2016 (174)
- April 2016 (105)
- March 2016 (133)
- February 2016 (127)
- January 2016 (93)
- December 2015 (92)
- November 2015 (80)
- October 2015 (164)
- September 2015 (133)
- August 2015 (120)
- July 2015 (110)
- June 2015 (165)
- May 2015 (242)
- April 2015 (131)
- March 2015 (212)
- February 2015 (147)
- January 2015 (117)
- December 2014 (118)
- November 2014 (201)
- October 2014 (146)
- September 2014 (162)
- August 2014 (217)
- July 2014 (153)
- June 2014 (195)
- May 2014 (193)
- April 2014 (231)
- March 2014 (270)
- February 2014 (107)
- January 2014 (186)
- December 2013 (122)
- November 2013 (156)
- October 2013 (215)
- September 2013 (248)
- August 2013 (239)
- July 2013 (167)
- June 2013 (151)
- May 2013 (223)
- April 2013 (278)
- March 2013 (229)
- February 2013 (254)
- January 2013 (201)
- December 2012 (207)
- November 2012 (154)
- October 2012 (203)
- September 2012 (175)
- August 2012 (209)
- July 2012 (180)
- June 2012 (148)
- May 2012 (241)
- April 2012 (215)
- March 2012 (343)
- February 2012 (248)
- January 2012 (242)
- December 2011 (201)
- November 2011 (328)
- October 2011 (262)
- September 2011 (221)
- August 2011 (239)
- July 2011 (248)
- June 2011 (283)
- May 2011 (367)
- April 2011 (393)
- March 2011 (284)
- February 2011 (344)
- January 2011 (212)
- December 2010 (274)
- November 2010 (300)
- October 2010 (280)
- September 2010 (322)
- August 2010 (303)
- July 2010 (248)
- June 2010 (187)
- May 2010 (231)
- April 2010 (284)
- March 2010 (287)
- February 2010 (329)
- January 2010 (258)
- December 2009 (353)
- November 2009 (496)
- October 2009 (367)
- September 2009 (461)
- August 2009 (353)
- July 2009 (269)
- June 2009 (329)
- May 2009 (354)
- April 2009 (354)
- March 2009 (535)
- February 2009 (351)
- January 2009 (324)
- December 2008 (226)
- November 2008 (315)
- October 2008 (301)
- September 2008 (208)
- August 2008 (309)
- July 2008 (246)
- June 2008 (265)
- May 2008 (399)
- April 2008 (515)
- March 2008 (314)
- February 2008 (345)
- January 2008 (324)
- December 2007 (324)
- November 2007 (272)
- October 2007 (272)
- September 2007 (265)
- August 2007 (260)
- July 2007 (280)
- June 2007 (246)
- May 2007 (389)
- April 2007 (410)
- March 2007 (371)
- February 2007 (298)
- January 2007 (385)
- December 2006 (293)
- November 2006 (389)
- October 2006 (487)
- September 2006 (455)
- August 2006 (111)
- July 2006 (397)
- June 2006 (367)
- May 2006 (413)
- April 2006 (441)
- March 2006 (381)
- February 2006 (349)
- January 2006 (390)
- December 2005 (261)
- November 2005 (318)
- October 2005 (528)
- September 2005 (369)
- August 2005 (369)
- July 2005 (274)
- June 2005 (410)
- May 2005 (331)
- April 2005 (465)
- March 2005 (276)
- February 2005 (291)
- January 2005 (272)
- December 2004 (199)
- November 2004 (388)
- October 2004 (318)
- September 2004 (273)
- August 2004 (298)
- July 2004 (267)
- June 2004 (286)
- May 2004 (168)
- April 2004 (268)
- March 2004 (316)
- February 2004 (271)
- January 2004 (292)
- December 2003 (164)
- November 2003 (249)
- October 2003 (311)
- September 2003 (262)
- August 2003 (305)
- July 2003 (170)
- June 2003 (271)
- May 2003 (239)
- April 2003 (273)
- March 2003 (155)
- February 2003 (1)
- January 2003 (1)
- December 2002 (1)
- October 2002 (1)
- September 2002 (1)
- August 2002 (1)
- July 2002 (1)
- June 2002 (1)
- April 2002 (2)
- March 2002 (1)
- February 2002 (1)
- January 2002 (1)
- December 2001 (1)
- November 2001 (1)
- October 2001 (1)
- September 2001 (1)
- August 2001 (1)
- July 2001 (1)
- June 2001 (1)
- May 2001 (1)
- April 2001 (1)
- March 2001 (1)
- February 2001 (1)
- January 2001 (1)
- December 2000 (1)
- November 2000 (1)
- October 2000 (1)
- September 2000 (1)
- August 2000 (1)
- July 2000 (1)
- May 2000 (2)
- April 2000 (1)
- March 2000 (1)
- February 2000 (1)
- January 2000 (1)
- December 1999 (1)
- November 1999 (1)
- October 1999 (1)
- September 1999 (1)
- August 1999 (1)
- July 1999 (1)
- June 1999 (1)
- May 1999 (1)
- March 1999 (2)
- February 1999 (1)
- January 1999 (1)
- December 1998 (1)
- November 1998 (1)
- October 1998 (1)
- September 1998 (1)
- August 1998 (1)
- July 1998 (1)
- June 1998 (1)
- May 1998 (1)
- April 1998 (1)
- March 1998 (1)
- February 1998 (1)
- January 1998 (1)
- December 1997 (1)
- November 1997 (1)
- October 1997 (1)
- September 1997 (1)
- August 1997 (1)
- July 1997 (1)
- June 1997 (1)
- May 1997 (1)
- April 1997 (1)