Displaying 20 results from an estimated 225 matches for "romainfrancoi".
Did you mean:
romainfrancois
2009 Oct 09
1
celebrating revision 50000
Hello,
Today, Brian Ripley commited the revision 50000 of R's svn repository.
I took this as an opportunity to do some data analysis of the log and
posted some code and graphics on my blog:
http://romainfrancois.blog.free.fr/index.php?post/2009/10/09/celebrating-R-commit-50000
The plots of the number of commits per day (and per month) indicates a
peak in 2002.
Here are the top 20 modified files :
> most.updated <- head( sort( table( data$file ), decreasing=TRUE ), 20 )
> cat( sprintf( "...
2010 May 29
3
S4 dispatch for .DollarNames (utils)
...> .DollarNames( x, "f" )
[1] "foo"
but completion does not work :
> x$f<TAB>
x$
What do I miss ?
I've uploaded foo here : http://addictedtor.free.fr/misc/rcpp/foo_1.0.tar.gz
Romain
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://bit.ly/9CQ66r : RMetrics 2010
|- http://bit.ly/cork4b : highlight 0.1-8
`- http://bit.ly/bklUXt : RcppArmadillo 0.2.1
2018 Oct 08
4
R_ext/Altrep.h should be more C++-friendly
I am not able to #include "R_ext/Altrep.h" from a C++ file. I think
it needs two changes:
1. add the same __cplusplus check as most of the other header files:
#ifdef __cplusplus
extern "C" {
#endif
...
#ifdef __cplusplus
}
#endif
2. change the line
R_new_altrep(R_altrep_class_t class, SEXP data1, SEXP data2);
to
2009 Jul 03
6
Remove all spaces from a string so it can be used by assign()
Hi
I have a string "56 Fe [1]" that I would like to use as a variable name by using "assign" however I think the spaces and brackets might be causing R some trouble.
How can I change the string so that it just becomes 56Fe1 and can be used as a variable name.
Thank You
Kurt
_________________________________________________________________
[[elided Hotmail spam]]
2009 Mar 19
4
Import R-output into Java
Hello,
I want to import R-output via Rserve to Java, especially for the function
ctree from the package party.
Rserve is working properly.
Yet, I only get the predictions with the Java code
try{
RConnection c = new RConnection();
...
c.voidEval("modell <- ctree(...)");
REXP y = c.eval("nodes(modell,1)[[1]]$prediction");
...
2009 Apr 20
0
xterm256
...ce.
The package is maintained at r-forge as part of the highlight project:
http://r-forge.r-project.org/projects/highlight/ and welcomes requests
(feature requests, bug requests, ...) though its tracker :
http://r-forge.r-project.org/tracker/?group_id=384
See also this post on my blog:
http://romainfrancois.blog.free.fr/index.php?post/2009/04/18/Colorful-terminal%3A-the-R-package-%22xterm256%22
Romain
--
Romain Francois
Independent R Consultant
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
_______________________________________________
R-packages mailing list
R-packages at r-project....
2009 Jun 23
0
RImageJ initial release
...lo,
I've uploaded the initial release (0.0-142) of the RImageJ package to CRAN.
The package allows R to use the facilities of the java based image
processing and analysis platform ImageJ.
See also the announcement on my blog, with a very simple example showing
how to use the package:
http://romainfrancois.blog.free.fr/index.php?post/2009/06/22/using-ImageJ-from-R%3A-the-RImageJ-package
The package is currently very simple (5 lines of R code !) but
additional features (such as an implementation of the java graphics
device on top of imagej) are planned.
Romain
--
Romain Francois
Independent R...
2009 Mar 02
2
Goldbach partitions code
Folks,
I put up a brief note describing my naive attempts to compute Goldbach
partitions, starting with a brute-force approach and refining
progressively.
http://jostamon.blogspot.com/2009/02/goldbachs-comet.html
I'd welcome your suggestions on improvements, alternatives, other
optimisations, esp. to do with space vs time tradeoffs.
Is this an example interesting enough for
2009 Jun 23
0
RImageJ initial release
...lo,
I've uploaded the initial release (0.0-142) of the RImageJ package to CRAN.
The package allows R to use the facilities of the java based image
processing and analysis platform ImageJ.
See also the announcement on my blog, with a very simple example showing
how to use the package:
http://romainfrancois.blog.free.fr/index.php?post/2009/06/22/using-ImageJ-from-R%3A-the-RImageJ-package
The package is currently very simple (5 lines of R code !) but
additional features (such as an implementation of the java graphics
device on top of imagej) are planned.
Romain
--
Romain Francois
Independent R...
2009 Dec 05
1
R brush for SyntaxHighlighter
Hello,
I've written a brush for R for the SyntaxHighlighter JavaScript
library. It allows you to display R code on a web page with the proper
syntax highlighting. It's available here:
http://demitri.com/code
Comments and suggestions for improvement are welcome!
Cheers,
Demitri
2009 Apr 20
0
xterm256
...ce.
The package is maintained at r-forge as part of the highlight project:
http://r-forge.r-project.org/projects/highlight/ and welcomes requests
(feature requests, bug requests, ...) though its tracker :
http://r-forge.r-project.org/tracker/?group_id=384
See also this post on my blog:
http://romainfrancois.blog.free.fr/index.php?post/2009/04/18/Colorful-terminal%3A-the-R-package-%22xterm256%22
Romain
--
Romain Francois
Independent R Consultant
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
_______________________________________________
R-packages mailing list
R-packages at r-project....
2010 Aug 20
1
Rserve (Anyone?)
REXP has an asBytes() method. Will this capture the output of an R plot
function if a proper graphics device is used? It appears R insists on
sending plot output to a file. Kind of strange since it insists on loading
all your data into memory before it can do anything.
If so then does anyone know what this would be? I prefer png or jpeg.
Example:
c is an RConnection
REXP r =
2011 May 31
1
assignInNamespace and new bindings
...w_binding || bindingIsLocked(x, ns)) {
+ if(!new_binding) unlockBinding(x, ns)
assign(x, value, envir = ns, inherits = FALSE)
w <- options("warn")
on.exit(options(w))
Romain
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
http://romain-francois.com
|- http://bit.ly/hdKhCy : Rcpp article in JSS
|- http://bit.ly/elZJRJ : Montpellier Comedie Club - Avril 2011
`- http://bit.ly/fhqbRC : Rcpp workshop in Chicago on April 28th
2009 Feb 12
1
Why is srcref of length 6 and not 4 ?
...attr(p, "srcref") )
List of 1
$ :Class 'srcref' atomic [1:6] 1 1 4 1 1 1
.. ..- attr(*, "srcfile")=Class 'srcfile' <environment: 0x946b944>
What are the two last numbers ?
Romain
--
Romain Francois
Independent R Consultant
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
--
Romain Francois
Independent R Consultant
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
2009 Jul 02
1
package post install instructions
...me 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 have missed ?
Romain
--
Romain Francois
Independent R Consultant
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://tr.im/qzSl : using ImageJ from R: the RImageJ package
|- http://tr.im/qzSJ : with semantics for java objects in rJava
`- http://tr.im/qzTs : Better completion popups
2009 Nov 05
1
combine UserDefinedDatabase and regular environments
...dump, if enabled)
2: normal R exit
3: exit R without saving workspace
4: exit R saving workspace
At the moment, it seems to be either lookup using UserDefinedDatabase or
regular lookup. Has anyone tried to combine both ?
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://tr.im/BcPw : celebrating R commit #50000
|- http://tr.im/ztCu : RGG #158:161: examples of package IDPmisc
`- http://tr.im/yw8E : New R package : sos
2009 Dec 15
1
S4 dispatch and S3 "connection" objects
...n"
Am I supposed to do :
setOldClass( c("file", "connection" ) )
setOldClass( c("url", "connection" ) )
and so on for each potential S3 class, or is there another way.
Romain
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://tr.im/HlX9 : new package : bibtex
|- http://tr.im/Gq7i : ohloh
`- http://tr.im/FtUu : new package : highlight
2010 Jun 18
2
nchar( NA )
Hello,
Is this expected ?
> nchar( c( "", NA ) )
[1] 0 2
Should not the second one be NA ?
Romain
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://bit.ly/98Uf7u : Rcpp 0.8.1
|- http://bit.ly/c6YnCi : graph gallery collage
`- http://bit.ly/bZ7ltC : inline 0.3.5
2009 Jun 30
4
conditional coloring of output text in console or in GUI
suppose I have some logical vector
x <- as.logical(c(0,0,0,1,0,0,1,1,0))
x
How would I make the words TRUE appear on the screen in a different
color from the words FALSE?
Thanks.
--Chris
--
Christopher W. Ryan, MD
SUNY Upstate Medical University Clinical Campus at Binghamton
40 Arch Street, Johnson City, NY 13790
cryanatbinghamtondotedu
"If you want to build a ship, don't drum
2010 Mar 07
1
duplicate STRSXP : shallow copy ?
...modified.
Is this intended ?
If not, I can track it down to the DUPLICATE_ATOMIC_VECTOR in
duplicate.c and submit a patch.
Also, CHARSXP don't seem to be actually duplicated :
case CHARSXP:
return s;
Romain
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://tr.im/OIXN : raster images and RImageJ
|- http://tr.im/OcQe : Rcpp 0.7.7
`- http://tr.im/O1wO : highlight 0.1-5