Search Discussions
-
Hi, Recently I saw a couple of cases in which the package vignettes were somewhat complicated so that Stangle() (or knitr::purl() or other tangling functions) can fail to produce the exact R code ...
Yihui Xie
May 30, 2014 at 5:04 am
Jun 5, 2014 at 1:40 am -
Can anyone tell me what the significance of 1954 is in R's NA? Thanks! Hadley -- http://had.co.nz/
Hadley Wickham
May 3, 2014 at 4:39 pm
May 6, 2014 at 8:57 pm -
Hadley asked about the Blue book; my shelf still has the earlier brown book Becker and Chambers, 1984, S: An interactive environment for data analysis and graphics. The manual page for precedence is ...
Therneau, Terry M., Ph.D.
May 7, 2014 at 12:21 pm
May 8, 2014 at 10:59 am -
Greetings, When using a 'foreign' function (from another package, say function 'whatever' from package 'foo'), you can of course just require the package and then just have whatever(...) in your ...
Ronald Barry
May 28, 2014 at 8:46 pm
May 30, 2014 at 9:40 pm -
Hi, It may be my misunderstanding, but it seems that the "na.action" in the princomp() function for principal components analysis does not work. Please see this simple example: u <- matrix(rnorm(75), ...
Ravi Varadhan
May 29, 2014 at 8:10 pm
Jun 3, 2014 at 7:20 pm -
According to :https://stat.ethz.ch/R-manual/R-devel/library/base/html/environment.html "If |fun| is a function or a formula then |environment(fun)| returns the environment associated with that ...
Mick Jordan
May 17, 2014 at 5:42 pm
Jun 3, 2014 at 8:56 pm -
I build a R package, however,when I run the" check("/home/conan/R/chinaWeather") ", it show me that : * checking PDF version of manual ... WARNING LaTeX errors when creating PDF version. This ...
Khl0798
May 23, 2014 at 11:57 am
May 25, 2014 at 4:31 am -
Dear devels, I need to create a (short) vector in C, which contains potentially very large numbers, exponentially to the powers of 2. This is my test example: lgth = 35; int power[lgth]; power[lgth - ...
Adrian Dușa
May 14, 2014 at 9:37 am
May 14, 2014 at 9:37 pm -
This may have been asked before, but is there an elegant way to check whether an variable/argument passed to a function is a "parse tree" for an (unevaluated) expression or not, *without* evaluating ...
Henrik Bengtsson
May 1, 2014 at 8:39 pm
May 2, 2014 at 4:54 pm -
In fact my first vignette full stop. I am intending to use Sweave. I have read the Sweave documentation and section 1.4 of the extensions manual and apart from (a) do not use split = TRUE (b) and ...
Michael Dewey
May 18, 2014 at 12:33 pm
May 19, 2014 at 11:58 pm -
Where does the value 2.2e-16 come from in p-values for chisq tests such as those reported below? Analysis of Deviance Table (Type II tests) Response: Freq LR Chisq Df Pr( Chisq) B 11026.2 1 < 2.2e-16 ...
Michael Friendly
May 7, 2014 at 2:02 pm
May 8, 2014 at 7:35 am -
The following citEntry includes a url with %3A and other encodings citEntry(entry="article", title = "Software for Computing and Annotating Genomic Ranges", author = personList( as.person("Michael ...
Martin Morgan
May 22, 2014 at 10:52 pm
May 24, 2014 at 8:30 am -
When dealing with object holding pointers that are only valid during a single session, it would be convenient to exclude them from being saved with the session image. (I am assuming that `quit` calls ...
Tim Keitt
May 22, 2014 at 1:54 am
May 22, 2014 at 4:30 pm -
I am trying to update an unsupported package and got the warning: * checking dependencies in R code ... WARNING 'library' or 'require' calls not declared from: 'Hmisc' 'R2HTML' 'tcltk' Missing or ...
Knut Krueger
May 8, 2014 at 6:15 am
May 8, 2014 at 8:50 am -
Regarding the following extract of ?options: ?editor?: a non-empty string, or a function that is called with a file path as argument. edit.default currently calls the function with three arguments ...
Scott Kostyshak
May 20, 2014 at 9:55 am
Sep 9, 2014 at 7:15 am -
Hello, I have a minimal example that shows a problem I'm having with parallel processing. library(parallel) mcmapply(function(x, y) { print("Running") Sys.sleep(10) }, as.list(1:10), as.list(10:1), ...
Dario Strbenac
May 29, 2014 at 6:00 am
May 30, 2014 at 1:29 am -
Hello If I have a function aFunction <- function(data, alpha, ...) { transform(alpha, ...) rowMeans(data) alpha } f <- function(data, selection, ...) { selected <- selection(data, ...) ...
Dario Strbenac
May 28, 2014 at 6:00 am
May 28, 2014 at 8:03 pm -
Dear maintainers of the parallel package, I ran into an issue with the parallel package in R-3.1.0. The following code prints the message "NULL!" quite a lot. library(parallel) for (n in 1:1000) { p ...
Josef Leydold
May 21, 2014 at 5:17 pm
May 22, 2014 at 4:18 am -
Dear list, On a follow up from my previous email, I am now trying to allocate vectors of length larger than 32-bit in C. "The sxpinfo header is defined as a 32-bit C structure..." and "A SEXPREC is a ...
Adrian Dușa
May 16, 2014 at 8:16 am
May 17, 2014 at 9:47 am -
It seems that when a vector has 10 elements, it prints out differently than one with 9 (extra space before the opening bracket). I can't see why this is happening. I am writing a manual containing ...
Dominic Comtois
May 16, 2014 at 8:41 pm
May 16, 2014 at 9:16 pm -
Dear list, When installing the latest version of Rtools (3.1.0.1942) into a path that contains more than 96 characters on Windows 7 64-bit, e.g. into ...
Tobias Verbeke
May 6, 2014 at 6:28 pm
May 12, 2014 at 11:47 am -
Have a class for which I would like to provide a "colnames<-.myclass" function so that colnames(myintsance) <- c("a","b","c") can be called. Witold -- Witold Eryk Wolski
Witold E Wolski
May 14, 2014 at 8:57 am
May 14, 2014 at 3:42 pm -
How can I access an object in an attached but deleted environment, when the object also exists in the .GolbalEnv? I hope the example below makes the question clear: --8<---------------cut ...
Rainer M Krug
May 9, 2014 at 10:54 am
May 9, 2014 at 12:07 pm -
I am compiling the latest R-patched (Revision: 65533) Ubuntu Lucid (10.04). Building succeeds but make check stops with an error. The output in the terminal from make check: Testing examples for ...
Berend Hasselman
May 7, 2014 at 7:24 am
May 7, 2014 at 11:20 am -
Hi to all [email protected]: c(person("fooa","foob", role = c("aut","cre"), email = "<span class="m_body_email_addr" title="bb72ff23e1b81f42798bc6171b3684a3" [email protected]</span "), person("foo1","foo2", ...
Knut Krueger
May 2, 2014 at 7:55 am
May 2, 2014 at 6:41 pm -
Record plot which stores a plot to an internal R data structure and Replay Plot which replays the plot enables one to keep plots around and use them accross sessions at least until version 3. If you ...
Michael Cohen
May 1, 2014 at 6:58 pm
May 1, 2014 at 9:03 pm -
Hello, I'm buiding a package and then checking for inconsistences, as recomended before submission. Everything works fine until, when it starts to verify the examples, it does not recognize the ...
Frederico Mestre
May 28, 2014 at 1:07 pm
May 28, 2014 at 1:27 pm -
Is there a pretty-printer for R data (and code for that matter), similar to Lisp's prettyprint/grind? I've looked in CRAN, and couldn't find anything. For example, I'd like to have ...
Stavros Macrakis (Σταῦρος Μακράκης)
May 27, 2014 at 5:10 pm
May 27, 2014 at 5:24 pm -
Is there some way to control the line width that dput uses? options(width=...) does not affect dput. For example, currently c(2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, *line break ...
Stavros Macrakis (Σταῦρος Μακράκης)
May 27, 2014 at 3:15 pm
May 27, 2014 at 3:57 pm -
I am trying to install R-Package RPostgreSQL, but getting the following error, Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object ...
Manoj G
May 23, 2014 at 8:42 am
May 23, 2014 at 8:44 am -
Version 3.1.0 of R has imposed a very small data limit on writing to fifos on Linux. Consider the following R code (Assumes that "ff" is a fifo in the R process's current directory): con <- ...
James Smith
May 20, 2014 at 3:02 pm
May 20, 2014 at 7:03 pm -
Hi, read.dcf() can modify the locale variable LC_CTYPE, and here is a minimal example: a 1 b [1] "C" After diagnosing the problem, it seems the on.exit() call in read.dcf() is the culprit ...
Yihui Xie
May 14, 2014 at 9:34 pm
May 16, 2014 at 7:52 pm -
I wrote about this some time back as this new "feature" has made R less convenient for me since I story many, say 1000 to 1500 diagnostic plots per session. Georgely Daroczi has a nice hack in ...
Michael Cohen
May 10, 2014 at 11:12 pm
May 11, 2014 at 11:00 am -
Hi , I tried to do the following . Before I execute the R script , i tried to clear the work space using rm(list = ls(all = TRUE)); . I get the following back trace . Its a huge backtrace , attached ...
Sandip Nandi
May 2, 2014 at 11:49 pm
May 2, 2014 at 11:54 pm -
Hi everyone, I have been trying to extend Rcpp with my own wrap and as templates. Two issues: 1) I need to explicitly call wrap. Is that expected? So for example I wrote this specialization ...
Florian Burkart
May 2, 2014 at 12:14 pm
May 2, 2014 at 12:31 pm -
Dear Prof Brian Ripley: I am very sorry for that I use the unappropriate words "It's my great pleasure" when I read this mail again! I give my apology sincerely to you ,unreservedly and with my ...
Hualei Kong
May 24, 2014 at 12:11 pm
May 24, 2014 at 12:11 pm -
Dear List, (Posting here as I'm not 100% certain this is a bug as I am very unfamiliar with code in the tools package) In the function tools:::.check_package_depends there is the following code (from ...
Gavin Simpson
May 20, 2014 at 4:33 am
May 20, 2014 at 4:33 am -
I notice compositions was removed on CRAN, that's one I want to try out. I downloaded the last tarball, the build output doesn't look that bad. A warning, no errors. $ R CMD build compositions * ...
Paul Johnson
May 13, 2014 at 8:32 pm
May 13, 2014 at 8:32 pm -
When a PSOCK cluster (maybe other cluster types too) is created by the parallel package, an Rscript process is spawned for each node. At least by default, the Rprofile.site file is read for each node ...
Richard Cotton
May 13, 2014 at 1:00 pm
May 13, 2014 at 1:00 pm -
Hi, in R-3.1.0 (Linux), traceback() does not show the source file line number for the truncated calls, when limiting the number of lines output for each call with argument max.lines. See sample code, ...
Renaud Gaujoux
May 12, 2014 at 7:51 am
May 12, 2014 at 7:51 am -
L.S. Please find below a trivial patch which corrects a typo in solve.Rd from base. Best, Tobias Index: solve.Rd =================================================================== --- ...
Tobias Verbeke
May 8, 2014 at 12:59 pm
May 8, 2014 at 12:59 pm -
"Equivalence" certainly does not mean that literally replacing some text will not change the result. function. In fact, x + y can equivalently be written ?+?(x, y). Notice that since ?+? is a ...
Georgi Boshnakov
May 7, 2014 at 7:37 pm
May 7, 2014 at 7:37 pm -
May I request a modest change in the documentation and warning for "xinch", "yinch", and "xyinch"? Consider the following example: [1] 0.1961134 Warning message: In yinch(1) : y log scale: yinch() is ...
Spencer Graves
May 7, 2014 at 5:25 pm
May 7, 2014 at 5:25 pm
Group Overview
group | r-devel |
categories | r |
discussions | 43 |
posts | 193 |
users | 71 |
website | r-project.org |
irc | #r |
71 users for May 2014
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)