Search Discussions
-
When a symbol in a package is resolved, R looks into the package's environment, and then into the package's imports environment. Then, if the symbol is still not resolved, it looks into the base ...
Gábor Csárdi
Apr 28, 2015 at 8:04 pm
May 1, 2015 at 11:24 pm -
There is currently a bug in the arima function. Namely, for arima models with differencing or seasonal differencing, the innovation variance estimator uses the wrong denominator whenever xreg is ...
Patrick Perry
Apr 20, 2015 at 4:34 pm
May 28, 2015 at 8:55 am -
Those of you who track R development closely, will have noticed yesterday's commit of enhanced versions of nchar() and nzchar() ...
Martin Maechler
Apr 24, 2015 at 10:06 am
Apr 27, 2015 at 3:08 pm -
I was preparing a fix for a minor glitch in my optimx package and R CMD check gave an error that the title was not in title case. It is A Replacement and Extension of the optim() Function R CMD check ...
Prof J C Nash (U30A)
Apr 24, 2015 at 3:35 pm
Apr 25, 2015 at 3:08 pm -
Hi, [1] 2147483647 Warning message: inaccurate integer conversion in coercion [1] NA Warning message: inaccurate integer conversion in coercion Is this a bug or a feature? The man page suggests it's ...
Hervé Pagès
Apr 14, 2015 at 5:19 am
Apr 17, 2015 at 5:12 pm -
Dear list members, I'm a bit confused about the evaluation of expressions using with() or within() versus subset() and transform(). I always teach my students to use with() and within() because of ...
Joris Meys
Apr 1, 2015 at 5:21 pm
Apr 1, 2015 at 8:38 pm -
Does anyone have speculations about the implications of the GPL for data included in a package, or more generally for restricting use of data? The specific use case is that I have a package which is ...
Ben Bolker
Apr 21, 2015 at 11:23 pm
Apr 22, 2015 at 9:15 pm -
We recently started noticing freezes that appear only on 32bit systems (both linux and windows) with a relatively recent versions of R 3.2.0, including the RC. It looks like the problem can be traced ...
Jeroen Ooms
Apr 15, 2015 at 1:29 am
Apr 21, 2015 at 7:35 pm -
Sometimes the absence of a name is maked by an NA: x <- 1:2 names(x)[[1]] <- "a" names(x) # [1] "a" NA Whereas other times its y <- c(a = 1, 2) names(y) # [1] "a" "" Is this deliberate? The help for ...
Hadley Wickham
Apr 27, 2015 at 11:48 am
Apr 28, 2015 at 4:24 pm -
Andrie noticed that first, and I can confirm: from our end, it looks as if the backend to http://cran.r-project.org/submit.html is currently down. Dirk -- http://dirk.eddelbuettel.com | @eddelbuettel ...
Dirk Eddelbuettel
Apr 23, 2015 at 7:52 pm
Apr 27, 2015 at 2:46 pm -
This issue has arisen within my anova.coxph routine, but is as easily illustrated with glm. testdata <- data.frame(y= 1:5, n= c(8,10,6,20,14), sex = c(0,1,0,1,1), age = c(30,20,35,25,40)) fit <- ...
Therneau, Terry M., Ph.D.
Apr 23, 2015 at 4:58 pm
Apr 23, 2015 at 8:28 pm -
Hi, I'm encountering trouble compiling caTools_1.17.1.tar.gz and e1071_1.6-4.tar.gz on a Linux system using the Intel compiler suite. 14 other packages I generally use installed without any trouble ...
Andy Jacobson (NOAA Affiliate)
Apr 21, 2015 at 5:46 pm
Apr 22, 2015 at 5:01 pm -
I am curious if anyone knows of R code where the "{" function is redefined in a useful way. Or "(" for that matter. Thanks Mick
Mick Jordan
Apr 17, 2015 at 4:19 am
Apr 17, 2015 at 2:55 pm -
In 'Writing R Extensions' section 6.9 there is the paragraph There are interfaces (defined in header R_ext/Applic.h) for definite and for indefinite integrals. ?Indefinite? means that at least one of ...
William Dunlap
Apr 9, 2015 at 11:13 pm
Apr 13, 2015 at 8:19 pm -
Dear all, I noticed that the dimnames returned by apply are different in the new release. In the following example. The returned row-names are c(?S?,?T?), but shouldn?t they be c(?X?,?Y?) as in the ...
Fischer, Bernd
Apr 29, 2015 at 6:22 pm
Apr 30, 2015 at 9:39 pm -
I was surprised by this: R --interactive -e 'interactive()' bash-3.2$ R -q -e 'interactive()' --interactive [1] FALSE as the command options document says that --interactive should force ...
Mick Jordan
Apr 29, 2015 at 1:11 am
Apr 30, 2015 at 6:25 pm -
Hi! Some time ago, I replaced calls to library() with calls to requireNamespace() in my package logmult, in order to follow the new CRAN policies. But I just noticed it broke jackknife/bootstrap ...
Milan Bouchet-Valat
Apr 29, 2015 at 4:57 pm
Apr 29, 2015 at 5:37 pm -
trying URL 'http://cran.rstudio.com/bin/macosx/mavericks/contrib/3.2/plyr_1.8.2.tgz' Content type 'application/x-gzip' length 855795 bytes (835 KB) ================================================== ...
Hadley Wickham
Apr 28, 2015 at 4:21 pm
Apr 28, 2015 at 5:20 pm -
Hi, I was installing hundreds of packages on a machine with a single call to install.packages() and after a long time the call to install.packages() finally returned with the following warnings and ...
Hervé Pagès
Apr 18, 2015 at 1:05 am
Apr 20, 2015 at 5:00 am -
Intended Audience: CRAN administrators, maintainers and R Package Developers. Does anyone know of consistent methods (or plans for near future) to verify integrity of downloaded R package binaries ...
Younce, Matt
Apr 16, 2015 at 4:32 pm
Apr 17, 2015 at 12:13 am -
Hi all, I've been using first() and last() for some time instead of x[1] and x[length(x)] for vectors, and I gradually added methods for lists, matrices, and data.frames. In preparing the next ...
Gregory Warnes
Apr 28, 2015 at 7:11 pm
May 1, 2015 at 9:30 pm -
Is there any plans for addressing the regression... https://bugs.r-project.org/bugzilla3/show_bug.cgi?id899 in the 3.2.1 release? In the fink project, I had to resort to creating a fixincludes ...
Jack Howarth
Apr 21, 2015 at 2:52 pm
Apr 22, 2015 at 12:56 pm -
Was writing a short R script to modify compile flags and saw this typo: Index: config =================================================================== --- config (revision 68217) +++ config ...
Tim Keitt
Apr 21, 2015 at 5:53 pm
Apr 21, 2015 at 6:13 pm -
FYI, with R-3.2.0 the configure options --with-system-zib=yes --with-system-bzlib=yes --with-system-pcre=yes become the default (according to Peter Dalgaard), so the devel versions of these libraries ...
Dominick Samperi
Apr 17, 2015 at 7:09 pm
Apr 17, 2015 at 7:43 pm -
I'm proposing to add something like this to the stats package : ---------------------------------------------------------- ### "The" sigma in lm/nls - "like" models: sigma <- function(object, ...) ...
Martin Maechler
Apr 10, 2015 at 2:28 pm
Apr 15, 2015 at 7:44 pm -
Hello, Got some at the time surprising errors some days ago when building a local r-devel installation on a cluster, with apparent outdated or missing dev versions of some files. After reading the ...
Jesper Gådin
Apr 8, 2015 at 4:51 pm
Apr 9, 2015 at 10:36 am -
Hello, I am trying to submit a new package to CRAN. I had checked the packages with R-devel and R-release in windows 7 local and ubuntu 12.04 local. The package has a C file in src folder which ...
Aravind Jayaraman
Apr 7, 2015 at 11:28 am
Apr 7, 2015 at 4:53 pm -
I've finally been able to piece this together, but I wonder if I've got it right/whether there is anywhere the behaviour of `model.matrix` with respect to `na.action` is more *explicitly* ...
Ben Bolker
Apr 29, 2015 at 7:07 pm
Apr 29, 2015 at 7:07 pm -
mkdir "A&" R # install.packages("pkgKitten") pkgKitten::kitten("aPackage", "A&") q() R CMD INSTALL "A&" gives Warning invalid package A (not the absence of the ampersand) I'm reasonably certain this ...
Hadley Wickham
Apr 29, 2015 at 4:35 pm
Apr 29, 2015 at 4:35 pm -
I've gotton some good responses; thanks for the input. I'll proceed with my repairs down another path. An underlying question then is "if the model frame is near useless, as the responses indicate, ...
Therneau, Terry M., Ph.D.
Apr 24, 2015 at 12:42 pm
Apr 24, 2015 at 12:42 pm -
Hello, Sometime ago I had to solve the problem of writing to common files from parallel R processes. For the synchronization, I created a small package ( ...
Ivan Popivanov
Apr 19, 2015 at 9:09 pm
Apr 19, 2015 at 9:09 pm -
I am trying to extend an R package which is totally written in C. I have the following issue: in the C code I want to make a call to an R defined function as optim routine does. Nevertheless, when I ...
Bstr
Apr 16, 2015 at 7:02 am
Apr 16, 2015 at 7:02 am -
Hi, I am embedding R in a C++ application, and if I use R.dll of version 3.1.2, I can see R_Visible is exported, so I can access this variable in my C++ code, after call: SEXP pRes = ...
暮如雪
Apr 15, 2015 at 9:15 am
Apr 15, 2015 at 9:15 am -
Hi, I am embedding R in my C++ application, when I try to evaluate(""demo(image)"), and run this command, it show a new window to display a multiple frames image, yet it just flash to the last frame, ...
暮如雪
Apr 15, 2015 at 1:40 am
Apr 15, 2015 at 1:40 am -
Hi! I'm sorry I could not reply on the original message ( https://stat.ethz.ch/pipermail/r-devel/2015-April/070943.html), while I wasn't a subscriber of the r-devel mail-list. But I got the ...
Jesper Gådin
Apr 13, 2015 at 11:26 am
Apr 13, 2015 at 11:26 am -
Against my better judgment I'm going to point out that "misspelled" is misspelled in the package-checking messages (at least according to the OED, the American Heritage Dictionary, and Google,which ...
Ben Bolker
Apr 12, 2015 at 3:26 pm
Apr 12, 2015 at 3:26 pm -
0
[Rd] request: check version requirements of Suggests package during R CMD build if install required
Hello, Say a package (call it pkgA) has this in its DESCRIPTION file: Suggests: foo ( = 1.2.3) And yet I only have version 1.2.2 of foo installed, which does not include coolFunction(). pkgA's ...Dan Tenenbaum
Apr 2, 2015 at 11:33 pm
Apr 2, 2015 at 11:33 pm
Group Overview
group | r-devel |
categories | r |
discussions | 37 |
posts | 131 |
users | 58 |
website | r-project.org |
irc | #r |
58 users for April 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)