Search Discussions
-
Dear all, I'm trying to use a Markdown vignette with UTF-8 encoding. It compiles well when knitting the vignette in RStudio, but it fails to recognize the UTF-8 settings when building the source ...
ONKELINX, Thierry
Dec 9, 2014 at 9:48 am
Dec 19, 2014 at 9:37 pm -
SUGGESTION: Would it make sense if install.packages() and friends always use an "ascii"(*) encoding when parse():ing R package source code files? I believe this should be safe, because R code files ...
Henrik Bengtsson
Dec 11, 2014 at 5:59 pm
Dec 12, 2014 at 7:39 pm -
Hi, We have published an Android app called R Console on the Play Store since D?cember 2013. https://play.google.com/store/apps/details?id=com.appsopensource.R ...
Apps Embedded
Dec 9, 2014 at 2:38 pm
Dec 10, 2014 at 12:18 pm -
Dear all, I'm developing a new database with the ability to perform very fast seek, insert, and delete operations. Also is able to perform very fast comparison of datasets. It has been designed to ...
Joanv
Dec 23, 2014 at 5:31 pm
Dec 25, 2014 at 11:43 am -
Dear list, I'm sorry to keep coming back with this time and time again, but this bug is still not fixed even though the root cause of the issue has been around for 2-3 years now. And as the number of ...
Janko Thyson
Dec 11, 2014 at 8:13 pm
Dec 15, 2014 at 12:02 pm -
Hello, All: What would it take to make ?iconv? portable? I ask, because I want to convert accented characters to vanilla ASCII, thereby converting, e.g., ?Ra?l? to ?Raul?, and Milan Bouchet-Valet ...
Spencer Graves
Dec 15, 2014 at 5:15 pm
Dec 16, 2014 at 8:18 am -
Hi all, anyone has an idea how I could fix this? \donttest{ ## Set colors from colorspace package with a fallback col <- try(colorspace::rainbow_hcl(5), silent = TRUE) %||% rainbow(5) } The problem ...
Gábor Csárdi
Dec 8, 2014 at 2:40 pm
Dec 8, 2014 at 9:29 pm -
If I type a character using \U syntax that has more than 4 digits, I get the wrong character. For example, "\U1d4d0" should print a mathematical bold script capital A. See ...
Richard Cotton
Dec 4, 2014 at 7:00 pm
Dec 4, 2014 at 9:21 pm -
Hi All, I've been looking into speeding up the loading of packages that use a lot of S4. After profiling I noticed the "exists" function accounts for a surprising fraction of the time. I have some ...
Peter Haverty
Dec 3, 2014 at 2:46 am
Dec 4, 2014 at 7:04 pm -
vapply <- function(X, FUN, FUN.VALUE, ..., USE.NAMES = TRUE) { FUN <- match.fun(FUN) if(!is.vector(X) || is.object(X)) X <- as.list(X) .Internal(vapply(X, FUN, FUN.VALUE, USE.NAMES)) } This is an ...
Mick Jordan
Dec 17, 2014 at 4:20 am
Dec 17, 2014 at 5:17 pm -
I've been hunting round for the accepted method of bundling system dependencies into binary packages. For example, there are some CRAN packages (e.g. gmp, RcppArmadillo, ...) which don't require the ...
Louis Aslett
Dec 2, 2014 at 6:34 pm
Dec 3, 2014 at 7:40 pm -
hi, Am a software developer having 4 yr experience in c++.I want to integrate R environment in my c++ application,please help me to do so. thanks®ards blesson [[alternative HTML version deleted]]
Blesson thomas
Dec 30, 2014 at 11:08 am
Dec 30, 2014 at 3:20 pm -
I am thinking about adding several geom and stat extensions to ggplot2 in the Hmisc package. To do this requires using non-exported ggplot2 functions as discussed in ...
Frank Harrell
Dec 23, 2014 at 3:34 pm
Dec 23, 2014 at 4:59 pm -
Dear R contributors, Considering the following sample C code, that illustrates two possible uses of a Cholesky decomp for inverting a matrix, equally valid at least in theory: SEXP test() { int d = ...
Pierrick Bruneau
Dec 20, 2014 at 9:06 pm
Dec 20, 2014 at 10:09 pm -
Dear R contributors, I'm running into trouble when trying to allocate some large (but in theory viable) vector in the context of C code bound to R through .Call(). Here is some sample code ...
Pierrick Bruneau
Dec 18, 2014 at 8:00 am
Dec 18, 2014 at 9:53 am -
Dear R contributors, Say I want to debug some C code invoked through .Call() - say "varbayes" in the VBmix package. following the instructions in "Writing R Extensions", I perform the following ...
Pierrick Bruneau
Dec 11, 2014 at 1:00 pm
Dec 11, 2014 at 2:07 pm -
Hi, running install.packages() to install a package from a local repository (i.e., starts with file:///) appears to delete the PACKAGES file that is in the src/contrib/ directory. This happens on a ...
Renaud Gaujoux
Dec 5, 2014 at 3:45 pm
Dec 6, 2014 at 5:27 am -
Hello, I wrote a function to show the help/index page of a package in a browser (and want to include this in an update for a CRAN package). I asked in R-help how to obtain the 00Index.html file, ...
Sven E. Templer
Dec 5, 2014 at 4:24 pm
Dec 5, 2014 at 6:03 pm -
R fails to build with visibility on and gcc 4.9's link time optimzation, because of its practice of building part of it as archive first. Specifically it builds some bundled libraries as archive ...
Hin-Tak Leung
Dec 15, 2014 at 3:04 am
Dec 23, 2014 at 8:38 pm -
Does anyone know if it is possible to add a dictionary file of known words that becomes part of the *built* package to tell 'R CMD check --as-cran' not to report these words as misspelled. I want ...
Henrik Bengtsson
Dec 6, 2014 at 2:17 am
Dec 11, 2014 at 10:40 am -
Looking at parLapplyLB, one sees that it takes in X and then passes splitList(X, length(cl)) to clusterApplyLB, which then calls dynamicClusterApply. Thus while dynamicClusterApply does handle tasks ...
Chris Paciorek
Dec 6, 2014 at 1:36 am
Dec 6, 2014 at 6:22 am -
Under some specific conditions, `parse` seems to produce inconsistent and potentially incorrect results the first time it is run in a fresh clean R session.? Consider this code where we parse the ...
Brodie gaslam
Dec 24, 2014 at 2:00 pm
Dec 24, 2014 at 2:00 pm -
This is an enquiry not so much about what the code for loadNamespace does, but rather about the intent and design of loadNamespace, and how it interacts with the `::` function, which seems to me to ...
Geoff Lee
Dec 21, 2014 at 12:41 am
Dec 21, 2014 at 12:41 am -
0
[Rd] Building R on Windows: mkdir of Rtools creates directories with read-only permissions [WEIRD]
With reference to the issue first reported by Henrik Bengtsson (see https://stat.ethz.ch/pipermail/r-devel/2014-January/068184.html), I would like to report that I am experiencing the very same ...C
Dec 15, 2014 at 5:57 pm
Dec 15, 2014 at 5:57 pm -
The package.skeleton() base function is useful for creating empty packages. The fact that the help files generated by the function cause errors was long an annoyance, but I noticed last month (while ...
Dirk Eddelbuettel
Dec 11, 2014 at 12:53 pm
Dec 11, 2014 at 12:53 pm -
'Writing R Extensions' advises you not to use system RNGs, so this is a good time to comply. ?6.6 of 'Writing R Extensions' describes how to use the R RNG from Fortran. Many compilers do not know ...
Prof Brian Ripley
Dec 1, 2014 at 9:45 am
Dec 1, 2014 at 9:45 am
Group Overview
group | r-devel |
categories | r |
discussions | 26 |
posts | 118 |
users | 51 |
website | r-project.org |
irc | #r |
51 users for December 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)