Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

1,863 results for “from:Romain Francois”

[Rcpp-devel] added raw support in RcppSexp
Romain Francois · Dec 22, 2009 · rcpp-devel

Hi, I've just added raw vector support into the RcppSexp class, so it gains: RcppSexp(const Rbyte & v); RcppSexp(const std::vector<Rbyte> & v); std::vector<Rbyte> asStdVectorRaw() const; I've also added the appropriate examples in RcppSexpTests.r...

[Rcpp-devel] completion for C++ objects
Romain Francois · May 29, 2010 · rcpp-devel

Hi, Based on http://permalink.gmane.org/gmane.comp.lang.r.devel/24520 I've added completion for C++ objects. So for example, with the World class from previous threads: > w$g<TAB> w$clear w$greet w$set Romain...

[Rcpp-devel] Generic R and C++ discussion
Romain Francois · Apr 8, 2014 · rcpp-devel

Hello, I have created a new mailing list (as a google group) for general discussions about R and C++. https://groups.google.com/forum/#!forum/r-and-cpp Shame that it had to come to this, but apparently Rcpp-devel...

MailingList: in DESCRIPTION
Romain Francois · Nov 5, 2009 · r-devel

Hi, Would it make sense to add a MailingList field in the DESCRIPTION file so that we can indicate where the package can be discussed. More and more packages have dedicated mailing lists (mostly thanks to r[-]?forge ). Romain -- Romain...

LinkingTo self
Romain Francois · Feb 3, 2014 · r-devel

Hello, Shipping header files for a package in inst/include and let other packages use it with LinkingTo is popular. Unfortunately for the package itself, we still need to use something like : PKG_CPPFLAGS+=-I../inst/include/ in the Makevars...

How does one do simple string concatenation?
Romain Francois · Mar 17, 2008 · r-help

Hi, See collapse argument in ?paste R> paste( paste(c("a","b","c"), collapse = ""), "d", sep = "") [1] "abcd" Cheers, Romain Ajay Shah wrote: > How does one convert objects c("a","b","c") and "d" into "abcd"? > > > paste(c("a","b...

R with Emacs
Romain Francois · Jun 4, 2010 · r-help

Le 04/06/10 12:55, dhanush a ?crit : > I want to know how Emacs works with R. can anyone provide me a link or manual > to read? Thank you http://lmgtfy.com/?q=R+emacs The first link is...

[Rcpp-devel] external pointers and Rcpp
Romain Francois · Jan 8, 2010 · rcpp-devel

Hi, I've pushed some elements on how to work with the XPtr class template to use external pointers. http://romainfrancois.blog.free.fr/index.php?post/2010/01/08/External-pointers-with-Rcpp Romain -- Romain Francois Professional R Enthusiast...

choosing a mirror
Romain Francois · May 22, 2006 · r-help

Le 22.05.2006 19:57, Erin Hodgess a ?crit : > Dear R People: > > Is there a way to select a mirror from the command line > instead of via a menu, please? > > I tried chooseCRANmirror but to no avail. > > Thanks in...

make: Nothing to be done for `all'.
Romain Francois · May 11, 2010 · r-help

Le 11/05/10 13:40, Elizabeth Lawson a ?crit : > When I try > $ rm hello.o hello.so > > I get the error > -bash: $: command not found > > What does that mean? Did you actually type the '$' ? You should not have. -- Romain...

[Rcpp-devel] Assignment and extraction from a Vector in a templated function
Romain Francois · Jul 6, 2010 · rcpp-devel

Le 06/07/10 13:14, Romain Francois a ?crit : > I do plan to have a sugar version of "rev". Actually I think I'll write > it right after I press "send". Done in rev 1790. -- Romain Francois Professional R...

Creating a list of empty lists
Romain Francois · Oct 13, 2009 · r-help

On 10/13/2009 03:48 PM, Magnus Torfason wrote: > l = list(list()) > for ( i in sequence(length-1) ) > { > l = list(unlist(l,recursive=FALSE), list()) > } About this : > rep( list(list()), 3 ) [[1]] list() [[2]] list() [[3]] list() Romain -- Romain...

[Rcpp-devel] short, unsigned short, long, unsigned long, long double
Romain Francois · Apr 6, 2010 · rcpp-devel

Hello, I have added support for these primitive types in Rcpp, so that one can wrap containers such as : std::vector<short>, ... Is this something that should be protected in case there is no "short", "long", etc ? Romain -- Romain Francois...

[Rcpp-devel] IntegerVector initialization
Romain Francois · Jan 15, 2012 · rcpp-devel

Le 12/01/12 11:29, Gregor Kastner a ?crit : > This is a minor thing but caused some confusion to me: > > IntegerVector foo1(2, 4.0); // works > IntegerVector foo2(2, 4); // throws error > > while > > IntegerVector bar1 = IntegerVector::create(4.0...

Source code for some grid package documentation
Romain Francois · Dec 4, 2009 · r-help

On 12/04/2009 04:28 PM, Sebastien Bihorel wrote: > > Dear R-users, > > I was wondering if anybody would have the source code used to create the > last figure in the frame.pdf documentation distributed with the grid > package. > file...

remove object
Romain Francois · May 29, 2009 · r-help

fernando espindola wrote: > Hi list.... > > I try to remove all object less one, this object is called index. I have > many object with different names and pattern option in ls function may not > remove this object why any word in...

[Rcpp-devel] Rcpp slides at useR
Romain Francois · Jul 27, 2010 · rcpp-devel

Hello, Dirk and I presented Rcpp and RProtoBuf (which uses Rcpp) at useR! last week. For more details we both blogged about it: http://romainfrancois.blog.free.fr/index.php?post/2010/07/27/useR!-2010 http://dirk.eddelbuettel.com...

[Rcpp-devel] Typecasting bug in Rcpp::List (generic_name_proxy) when using clang
Romain Francois · Jul 29, 2014 · rcpp-devel

Sent a PR. Everything was pretty well explained in the original email. Le 29 juil. 2014 ? 13:51, Dirk Eddelbuettel <edd at debian.org> a ?crit : > > On 29 July 2014 at 12:17, Christian Authmann wrote: > | Sorry, due to a...

[Rcpp-devel] How to free memory in Rcpp
Romain Francois · Dec 13, 2012 · rcpp-devel

Hello, What memory do you want to free ? Can you give an example of code where there is memory you'd like to "free" ? Romain Le 2012-12-13 22:52, Honglang Wang a ?crit?: > Dear All, > How to free...

package post install instructions
Romain Francois · Jul 2, 2009 · r-devel

Hello, I've looked in tools:::.install_packages for some sort of hook that would let packages developers point to further instructions after a package is installed. For example, some packages need to setup environment variables, ... Is there something I...

Can't find what you're looking for? Try searching with Google .