Displaying 10 results from an estimated 10 matches for "hlx9".
Did you mean:
hlx
2009 Dec 15
1
S4 dispatch and S3 "connection" objects
...( 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
2009 Dec 15
2
split.data.frame
...2
7 7 2
8 8 2
9 9 2
10 10 2
> split( df, x > 3 )
$`FALSE`
x y
1 1 1
2 2 1
3 3 1
$`TRUE`
x y
4 4 1
5 5 1
6 6 2
7 7 2
8 8 2
9 9 2
10 10 2
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 Jan 02
3
R-devel Digest, Vol 83, Issue 2
...bject.cpp?rev=255&root=rcpp&view=markup
>
> -- Romain Francois Professional R Enthusiast +33(0) 6 28 91 30 30
> http://romainfrancois.blog.free.fr |- http://tr.im/IW9B : C++ exceptions
> at the R level |- http://tr.im/IlMh : CPP package: exposing C++ objects
> `- http://tr.im/HlX9 : new package : bibtex
2009 Dec 14
1
Printing to PDF in for
Hi everybody,
I would like to ask if it is possible using pdf function or some other to
print plots in cycle such that every new plot is on new page.
like this
pdf(file="D:/Plot.pdf",width = 9.25,height=9.25,
family="Helvetica",pointsize=8,bg="white")
for (i in 1:10){
x <- seq(1,40,1)
y <- 2*x+1+5*rnorm(length(x))
hist(y,freq = FALSE)
plot(density(y))
}
2009 Dec 15
3
Redirect standard output (PR#14148)
Full_Name: Joe Song
Version: 2.10.0
OS: Windows 7
Submission from: (NULL) (97.123.159.234)
Symptom: The following command in R
> system("program > run.log")
would not redirect standard output to the file "run.log".
This bug did not exist on Windows XP, but appeared on Windows 7 when the same
program is run.
2010 Jan 02
1
R_PreserveObject, R_ReleaseObject : reference counting needed ?
.../viewcvs.php/pkg/src/RObject.cpp?rev=255&root=rcpp&view=markup
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://tr.im/IW9B : C++ exceptions at the R level
|- http://tr.im/IlMh : CPP package: exposing C++ objects
`- http://tr.im/HlX9 : new package : bibtex
2009 Dec 14
2
Combinations
Dear R helpers,
I am working on the scenario analysis pertaining to various interest rates. In this connection I need to form the various combinations as under :
Suppose I have two sets A = (a, b, c) and B = (x,y,z)
Then I can easily form the cominations as
(ax, ay, az, bx, by, bz, cx, cy, cz)
However, if I have say 5 variables, then total no of possible combinations will be 3^5 = 243.
2009 Dec 13
1
How to resolve include Rcpp.h problems?
Hi,
I am Linux Ubuntu 9.04 user. I'm using R-2.6.
Actually, I am developing R package for reading/writing 3D images. I needed
to use the R package Rcpp in order to make profit of available C/C++ codes.
My problem is that my C code is not able to include the Rcpp.h
In fact, when I run this command R CMD build rply, I got the following error
message in the file
2009 Dec 17
2
issue with using rm: cannot generate on-the-fly list
Hello,
I have the following problem when trying to use rm:
In a top level script file I have a loop iterating over some index. The loop
is not contained within a function, so the scope of variables declared in
the loop is global. Within this loop I generate several variables which
should be removed at the end of each iteration. To do this, I wrote a
function to clean up the workspace. An example
2009 Dec 11
12
Literature analysis
Dear all,
i am new in R. I am writing a review paper about batteries. However, i
am interested in analyzing all the papers by keywords, author,
references and year.
This could be done by "refviz" a software, which is only running on
windows machines and which is not free.
So my question to you is, is it somehow possible to write a script that
can do all of this work?
And if yes, with