Displaying 20 results from an estimated 1000 matches similar to: "thanks"
2005 Jan 10
2
doing many commands within R
Dear all,
I'm new to this list, so let me greet everyone.
My problem is that I have several thousand data files which I want to
perform a lot of R commands on, which are found in a seperate .R script.
Now, what I did was within the R prompt, I used to read in a list of the
data files.
e.g.
namelist <- readLines("list_of_names",n=-1)
for (i in 1:100) {
k <-
2005 May 17
1
installing R on Irix
Hello veeryone, I nedd some help here.
The problem is I was trying to install R on my Irix system, with little
success: I got the following ugly error messages: watch out:
begin installing recommended package mgcv
Cannot create directory "": No such file or directory
* Installing *source* package 'mgcv' ...
** libs
gmake[3]: Entering directory
2005 Jan 05
3
omegahat link on R site (PR#7471)
Hello,
On the R web site on the page about R Data Import/Export, the link to
omegahat.org in the Introduction is misspelled.
Matthew Cserhati
2008 Mar 30
2
get Samba Server via VPN from windows XP
Hi,
I have network in my office with Samba server on Debian Linux. I would
like to get the folders and files in this server from my home with
Windows XP.
So, I done the VPN connection. I think, it works good. In the VPN
connection Samba Server's ip address is 192.168.2.1 and net mask is
255.255.255.255. The client's ip address is 192.168.2.6. and netmask is
255.255.255.252.
I can
2005 Apr 01
2
about get stdout from other program
Dear all R-helper,
if I want to use stdout from other language as my R program input ,which is
the best way for design the API,using Pipe function or produce a temporary
file,using scan function to read the file ?
thanks
Michael
2014 Nov 26
2
[LLVMdev] Out of source backend
Hello,
I am in a developing process for a new llvm backend (target). Can I
create the new target subdirectory out of source. My point is that I want
to create a separate svn repo only for my new backend directory and use the
llvm project as an external repository. I have to amke some changes to llvm
project, to integrate my backend to the llvm, but I won't commit my changes
to the llvm
2008 Mar 01
2
How to cache data in a plugin
Hi,
I''m using CountryCodes to get countries list for select box. It
provides self.countries_for_select(*args) method exactly for this
purpose. I''m using it in only one place in my view. So I was thinking
about caching this data somehow, so it won''t have to be recreated
every time the page is loaded.
The problem is that the plugin initializes its main @countries
2006 May 19
2
"Pipelining" programs in R
Hello...
I would like to use R for 'pipelining' data among several programs. I'm
wondering how I can use R to call another program, feed that program a set
of parameters, and retrieve the output.
E.g., I have an executable that, when opened, prompts the user to enter a
set of parameters. The program then executes & prompts the user for the
name of an output file. I need to
2008 Apr 17
4
Do I need to use sessions if I don't store anything in them?
Hi,
I got very small app that has user part and admin part. The problem is
that after a while the sessions table has ~150mb. I don''t really need
to store any user data in the session for the user part. I only need
it for the admin part.
Can I simply turn session off in controllers from the user part? Are
there any drawbacks of turning the session off?
Regards
2005 Apr 12
5
How allocate STRSXP outside of gc
Hi,
I am trying to figure a way to allocate a string SEXP so that gc() won't
ever collect it.
Here is a little bit of a background. Suppose I want to write a
.Call-callable function that upon each call returns the same value, say
mkChar("foo"):
SEXP getFoo() {
return mkChar("foo");
}
The above implementation doesn't take advantage of the fact that
2005 Mar 02
1
R 2.1.0 scheduled for April 18
The release schedule has now been set with a release date on April 18.
The detailed procedure can be found at http://developer.r-project.org/
(it is not quite there yet, but will appear after a short propagation
delay.)
The main point for non-developers is that we start making alpha
tarballs on March 21 and beta tarballs on April 4. Only very simple
and/or critical bugs are fixed in the last
2005 Sep 14
1
Long lines with Sweave
I have used Sweave a lot the latest year, but never really used any long
function calls.
If I have code which look like this
-------------------------------------------------------------
gof <- benthic.flux(ID="Gulf of Finland",
meas.conc=conc,
bw.conc=bw.conc,
time=times,
2006 Jul 13
2
VERY TINY question: missing function to clear the console?
Hi,
for presentation purposes I would like to clear to whole console
window (like in a UNIX terminal: 'clear').
Is there such a function?
If not, I could image that is not too hard to write such a function.
Cheers,
Hans
2008 Apr 08
1
Question Regarding 'pipe'
Can anyone point out why this is not working?
y<-read.table(pipe(' awk '{ n = $1; sub( ".*" $1 " " ,"") ; while ( n-- )
print }' temp.txt '))
[[alternative HTML version deleted]]
2008 Jun 09
2
Plot timer in a for loop
Hello,
This code works fine but is so fast I can't see anything but the last plot.
for (i in nrow(X)){
plot(as.numeric(d[i,])) }
I'd like to view a plot every 500 milliseconds, nrow(X) = 400. How?
Thanks
--
View this message in context: http://www.nabble.com/Plot-timer-in-a-for-loop-tp17741975p17741975.html
Sent from the R help mailing list archive at Nabble.com.
2005 Feb 01
1
Process to both write to and read from (pipe/fork)?
Dear all,
I would like to start a process from an R program in such a way that
I can both feed input into the process and read the process's output.
It seems that in R, I can have a pipe for writing into another process's
input or a pipe for reading from another process's output, but not both.
Doing both necessitates forking, such that the child can start the
external process and
2005 Feb 01
1
Process to both write to and read from (pipe/fork)?
Dear all,
I would like to start a process from an R program in such a way that
I can both feed input into the process and read the process's output.
It seems that in R, I can have a pipe for writing into another process's
input or a pipe for reading from another process's output, but not both.
Doing both necessitates forking, such that the child can start the
external process and
2005 Apr 06
2
Precision
How precise is R numerically? For example I
wrote the following function for calculating
the volume of the ball inscribed in the
unit cube in m dimensions. In order to see what
happens in 40 dimensions, I created an output
of 24 digits. But how many are precise?
Thanks
Josef Eschgf?ller
Ferrara
---------------------------------------
Vol = function (m)
{if (m<=1) 1
else Vol(m-2)*pi/(m+m)}
2006 Dec 15
2
fork package problem
I have been using the fork package on a cluster to spawn jobs. I have
noticed that I end up with many "R defunct" (zombie) processes following
the use of fork that do not die completely until I close down R.
Initially, I thought it may be my code but I ran the example from the
latest fork package (see code below) on R.2.3.1 and ended up with the
same problem. The code from the
2005 Apr 14
2
Printing integers in R "as is"
Hi,
I am using the following command to print to a file (I omitted the file
details):
cat( paste( paste(orientation, start, end, names,"\n"), paste(start, end,
"exon\n"), sep=""))
where "orientation" and "names" are character vectors and "start" and
"end" are integer vectors.
The problem is that R coerce the integer vectors