Displaying 9 results from an estimated 9 matches for "xhls".
Did you mean:
hls
2009 Sep 02
1
How to ship R scripts with R packages ?
...el/2009-August/054264.html , but
with a concrete example)
I am developing some packages that contain scripts (for Rscript) and
would like to know what is the best/recommended way to ship these scripts.
An example is the "ant" package (R capable version of apache ant, see
http://tr.im/xHLs). The package has a ant.R script in the exec directory
and here is how I use it :
$ `Rscript -e "cat( system.file( 'exec', 'ant.R', package = 'ant' ) ) " `
... not so pretty. Meanwhile, "Writing R extensions" talks about the
exec directory, but it is...
2009 Sep 08
0
R meets apache ant
...e configure script.
This is a very first release, so feedback and ideas for additional
features or tasks is very welcome.
Romain
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://tr.im/xMdt : update on the ant package
|- http://tr.im/xHLs : R capable version of ant
`- http://tr.im/xHiZ : Tip: get java home from R with rJava
_______________________________________________
R-packages mailing list
R-packages at r-project.org
https://stat.ethz.ch/mailman/listinfo/r-packages
2009 Sep 08
0
R meets apache ant
...e configure script.
This is a very first release, so feedback and ideas for additional
features or tasks is very welcome.
Romain
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://tr.im/xMdt : update on the ant package
|- http://tr.im/xHLs : R capable version of ant
`- http://tr.im/xHiZ : Tip: get java home from R with rJava
_______________________________________________
R-packages mailing list
R-packages at r-project.org
https://stat.ethz.ch/mailman/listinfo/r-packages
2009 Sep 03
1
Rscript and default packages
...default-packages argument, but I was wondering if
there was a mechanism to embed this information within the script itself
Romain
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://tr.im/xMdt : update on the ant package
|- http://tr.im/xHLs : R capable version of ant
`- http://tr.im/xHiZ : Tip: get java home from R with rJava
2009 Sep 07
0
R CMD INSTALL --clean
...lt;/table>\n"
)
ooindex[ bottom ] <- txt
# write back
cat( ooindex, file = ooindex.file, sep = "\n" )
}
--
Romain Francois
Professional R Enthusiast
+33(0) 6 28 91 30 30
http://romainfrancois.blog.free.fr
|- http://tr.im/xMdt : update on the ant package
|- http://tr.im/xHLs : R capable version of ant
`- http://tr.im/xHiZ : Tip: get java home from R with rJava
2009 Sep 07
2
Andrews plot
Dear all
Colleague of mine ask me if R is capable of Andrews plot like
andrewsplot(x) in Matlab.
Quick search did not reveal anything but before I start to write any
routine I would like to ask this ingenious audience if there is any
implementation of Andrews plots somewhere.
I know about parallel coordinate plots in lattice (although I do not use
them as I am not sure what the plot tells
2009 Sep 04
5
< 0 x 0 matrix >
Hi,
Does anybody know, what is going on here?
> diag(sqrt(1))
[,1]
[1,] 1
> diag(sqrt(0.3333))
<0 x 0 matrix>
> sqrt(1)
[1] 1
> sqrt(0.3333)
[1] 0.5773214
BR, Markku Karhunen
researcher
University of Helsinki
2009 Sep 04
3
Load a package without installing it
Hi all,
When developing a package, it's often useful to be able to reload it,
without re-installing, re-starting R and re-loading. To do this I've
written a little script that inspects the package description and
loads dependencies, data and code - http://gist.github.com/180883.
It's obviously not very general (being tailored to my description
files) and won't work for packages
2009 Sep 03
2
Calling R from a Perl script: much slower?
Hello list,
I use R for microarray analysis.
One procedure I use takes a large matrix, and loops through it looking
for specific rows, does an operation with them, and outputs a result
(single row) as a row of another matrix. The loop goes on about 25000
times.
When I run the loop directly from the R console itself, it takes about
3 minutes in my computer. I'm ok with that.
Now,