Search Discussions
-
Hello, All: The fda package has tests that run too long for CRAN's current rules. I'd like to wrap some examples in a construct like the following: if(!CRAN()){ ... } I tried the following: CRAN <- ...
Spencer Graves
Sep 3, 2012 at 5:43 am
Sep 6, 2012 at 1:33 pm -
I suggest adding a 'pivot' argument to qr.R, to obtain columns in the same order as the original x, so that a <- qr(x) qr.Q(a) %*% qr.R(a, pivot=TRUE) returns x ...
Tim Hesterberg
Sep 7, 2012 at 3:16 pm
Oct 3, 2012 at 4:20 pm -
( A similar problem is also reported by Sebastian P. Luque with library(maptools) library(trip) in the vignette as below ). I am writing a vignette which loads RMySQL and RPostgreSQL. This produces ...
Paul Gilbert
Sep 18, 2012 at 9:40 pm
Sep 19, 2012 at 12:44 pm -
Hi List, I'd imagine this is a question that has been answered before, but I can't seem to track it down, sorry for the duplication if it has. I am writing an interface for a C library and want to ...
Simon Knapp
Sep 15, 2012 at 3:10 am
Sep 16, 2012 at 2:00 pm -
When creating a package, I would like a way to tell R that a function with a period in its name is not a method. I'm writing a package now with a modified version of qr.R. R CMD check gives ...
Tim Hesterberg
Sep 7, 2012 at 3:05 pm
Sep 7, 2012 at 6:30 pm -
My problem is that CRAN demands that I suppress a large fraction of my checks, in order to fit within time constraints. This leaves me with 3 choices. 1. Add lines to my code that tries to guess if ...
Terry Therneau
Sep 19, 2012 at 2:08 pm
Sep 19, 2012 at 6:57 pm -
Dear useR's, today I stumbled over an interesting phenomenon: First, I created a named numeric vector with a certain class and several attributes via the structure() function. After that, I ...
Basil Abou El-Komboz
Sep 11, 2012 at 2:53 pm
Sep 11, 2012 at 11:57 pm -
Is there some reason why [1] 2 4 4 Warning message: In (1:2) + (1:3) : longer object length is not a multiple of shorter object length can't be made into an error? I realise it was there in S-PLUS, ...
Thomas Lumley
Sep 25, 2012 at 2:45 am
Sep 25, 2012 at 7:39 am -
I hardly know anything about the format used in (non-compressed) serialization/RDS, but hoping someone with more knowledge could give me some feedback; Consider two R processes running in parallel on ...
Henrik Bengtsson
Sep 15, 2012 at 5:21 pm
Sep 15, 2012 at 9:42 pm -
Error in as.data.frame.vector(x, ..., nm = nm) : formal argument "nm" matched by multiple actual arguments nm= works for integer arguments: OneToTen 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 Bill ...
William Dunlap
Sep 13, 2012 at 8:32 pm
Sep 14, 2012 at 3:10 pm -
In do_matrix in src/array.c there is a type switch containing : case LGLSXP : for (i = 0; i < nr; i++) for (j = 0; j < nc; j++) LOGICAL(ans)[i + j * NR] = NA_LOGICAL; That seems page inefficient, ...
Matthew Dowle
Sep 3, 2012 at 2:04 am
Sep 4, 2012 at 9:05 pm -
This is a follow-up question for PR#15052 <http://bugs.r-project.org/bugzilla3/show_bug.cgi?id052 There is another thing I would like to discuss wrt how nlminb() should proceed with NAs. The ...
Sebastian Meyer
Sep 26, 2012 at 9:13 am
Sep 29, 2012 at 7:40 pm -
Hi! One of the three French CRAN mirrors, cran.cict.fr (Toulouse) seems to be down most of the time, and at least really not reliable. It has currently been down for 28 days (!) [1], and I know that ...
Milan Bouchet-Valat
Sep 28, 2012 at 7:37 am
Sep 29, 2012 at 6:44 pm -
I am trying to do a classic R -d valgrind --vanilla < mypkg-Ex.R as described in http://cs.swan.ac.uk/~csoliver/ok-sat-library/internet_html/doc/doc/R/2.9.1/doc/manual/R-exts.html#Using-valgrind The ...
David
Sep 12, 2012 at 5:38 am
Sep 25, 2012 at 10:03 pm -
Seemed like a good idea at the time, but [1] Program received signal SIGSEGV, Segmentation fault. because of an integer overflow at src/main/printvector.c:176 R Under development (unstable) ...
Martin Morgan
Sep 24, 2012 at 11:42 pm
Sep 25, 2012 at 3:29 pm -
The methods package ?cbind2 includes the instruction to use via methods:::bind_activation(TRUE). This changes the default definition of cbind globally, disrupting proper evaluation in packages not ...
Martin Morgan
Sep 12, 2012 at 10:23 pm
Sep 15, 2012 at 5:35 pm -
I'm touching up changes to rpart and have a question with .Rbuildignore. Here is my file tmt1014% more .Rbuildignore test.local \.hg src/print_tree.c The source code included a module "print_tree.c", ...
Terry Therneau
Sep 20, 2012 at 5:43 pm
Sep 20, 2012 at 8:37 pm -
Hi, all. I was trying to build my R package with R 2.15.1 32bit and win7. I basically follow the routine in Steven Mosher's blog http://stevemosher.wordpress.com/step-10-build/ After I fixed the ...
Qi Zhang
Sep 19, 2012 at 12:55 am
Sep 19, 2012 at 12:14 pm -
Full details, including all sorts of logs here: https://bugzilla.redhat.com/show_bug.cgi?id�7655 A very quick look doesn't show anything obvious, in fact, it might be a readline bug, but readline is ...
Tom Callaway
Sep 17, 2012 at 5:30 pm
Sep 17, 2012 at 6:59 pm -
Hi, I'm trying to implement an abort() method that works just like stop() but does not signal the condition such that try() and tryCatch(..., condition=...) are, contrary to stop(), effectively ...
Henrik Bengtsson
Sep 11, 2012 at 11:19 pm
Sep 12, 2012 at 5:08 pm -
Hi Folks: I'm writing a little package that may not ever hit CRAN or even be distributed beyond a relatively narrow audience at my company. Nevertheless, I have tried to adhere to practices that ...
Bert Gunter
Sep 10, 2012 at 4:11 pm
Sep 11, 2012 at 12:22 pm -
Hi, I'm trying to get a package to pass through "R CMD check --as-cran" and have run into a problem that gives me no idea where to look to fix it. I'm running R version 15.1 on a Windows 7 64-bit ...
Kevin R. Coombes
Sep 10, 2012 at 6:15 pm
Sep 10, 2012 at 6:29 pm -
In the code for 'aggregate.formula', there is if (as.character(formula[[2L]] == ".")) I believe that it is meant to be if (as.character(formula[[2L]]) == ".") However, if (as.character(formula[[2L]] ...
Suharto Anggono Suharto Anggono
Sep 3, 2012 at 9:06 am
Sep 3, 2012 at 10:05 am -
R-devel, I am migrating from R.2.13.2 to R.2.15.1 and just realize that R command line options --max-nsize and --max-vsize are no longer supported along with the defunct of mem.limits(). To me, the ...
Qwumd
Sep 21, 2012 at 9:52 pm
Mar 6, 2013 at 5:42 pm -
R-devel now gives a warning for a non-standard license (this may have happened for a while). In Rgraphviz we include the Graphviz source code, which is under Eclipse. But the rest of the R package is ...
Kasper Daniel Hansen
Sep 24, 2012 at 5:30 pm
Sep 24, 2012 at 9:17 pm -
This seems to be due to the get.gpar() call in the SplomT() function -- it produces a new page if it is called before any graphics output is drawn. That's not quite correct: The point is that ...
Deepayan Sarkar
Sep 24, 2012 at 5:00 pm
Sep 24, 2012 at 5:00 pm -
Hi, example(smooth.spline) fails with the non byte-compiled version of the smooth.spline function: smth.s require(graphics) smth.s attach(cars) smth.s plot(speed, dist, main = "data(cars) & smoothing ...
Hervé Pagès
Sep 19, 2012 at 8:41 pm
Sep 20, 2012 at 6:58 am -
hello we are developing an R package called ANTsR for which we have some special types. one of these types is an " antsMatrix " type. we implemented a "as.data.frame" function that casts an ...
Brian avants
Sep 19, 2012 at 8:06 pm
Sep 19, 2012 at 10:11 pm -
Some questions motivated by this discussion. From the CRAN policy page: "Checking the package should take as little CPU time as possible, as the CRAN check farm is a very limited resource and there ...
Terry Therneau
Sep 5, 2012 at 4:08 pm
Sep 6, 2012 at 1:17 am -
I'm running into some hard-to-understand behavior with the evaluation environment when NextMethod is used. I'm using square-bracket indexing into objects, and the evaluation environment of the ...
Winston Chang
Sep 2, 2012 at 4:25 am
Sep 4, 2012 at 2:50 am -
Thomas, I noticed the delete.response() just returns its input if the input is not of class "terms". Hence we get surprising (to me) results like y ~ x1 + x2 <environment: 0x3244788 y ~ x1 + x2 ...
William Dunlap
Sep 21, 2012 at 5:57 pm
Sep 21, 2012 at 5:57 pm -
[ Email repost 3 of 3 ] From: Dirk Eddelbuettel <edd at debian.org To: R-devel org <r-devel at r-project.org Subject: [Patch] Minor glitch in 'Writing R Extensions' Date: Mon, 3 Sep 2012 10:58:32 ...
Dirk Eddelbuettel
Sep 15, 2012 at 6:37 pm
Sep 15, 2012 at 6:37 pm -
[ Email repost 2 of 3 ] From: Dirk Eddelbuettel <edd at debian.org To: R-core <R-core at r-project.org , Prof Brian D Ripley <ripley at stats.ox.ac.uk Subject: Why fix all.equal for POSIXct at 1 ...
Dirk Eddelbuettel
Sep 15, 2012 at 6:37 pm
Sep 15, 2012 at 6:37 pm -
[ Email resend 1 of 3 ] From: Dirk Eddelbuettel <edd at debian.org To: R-core <R-core at r-project.org CC: Philip Johnson <plfjohnson at emory.edu , edd at debian.org Subject: The X11 device patch ...
Dirk Eddelbuettel
Sep 15, 2012 at 6:37 pm
Sep 15, 2012 at 6:37 pm -
Over the last few months, I had sent emails with follow-up suggestions, questions and (minimal) patches to R Core (two) and R-Devel (one). Not one of these emails was met with any follow-up I am ...
Dirk Eddelbuettel
Sep 15, 2012 at 6:37 pm
Sep 15, 2012 at 6:37 pm -
Hi, I am trying to implement on a Win7 box the showArgs example of section 5.10.2 "Calling .External" of the R extension manual. I am using interchangeably gcc (RTools) and Visual C++ (via ...
Jean-Michel Perraud
Sep 9, 2012 at 11:51 pm
Sep 9, 2012 at 11:51 pm -
For an external pointer <pointer: (nil) one might expect all.equal to behave as for environments [1] TRUE but it does not Error in unclass(target) : cannot unclass an external pointer A solution is ...
Martin Morgan
Sep 5, 2012 at 8:50 pm
Sep 5, 2012 at 8:50 pm -
Hello All, I posted this earlier on R-help but received no answers. This touches the implementation of reference classes so maybe R-devel is a better place. The memory consumption of reference ...
Jan Mueller
Sep 4, 2012 at 7:56 am
Sep 4, 2012 at 7:56 am -
The (marked up in info mode) manual Writing R Extensions says in 6.1.3 -- Function: double fprec (double X, double DIGITS) Returns the value of X rounded to DIGITS decimal digits (after the decimal ...
Dirk Eddelbuettel
Sep 3, 2012 at 3:58 pm
Sep 3, 2012 at 3:58 pm
Group Overview
group | r-devel |
categories | r |
discussions | 39 |
posts | 175 |
users | 53 |
website | r-project.org |
irc | #r |
53 users for September 2012
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)