Displaying 20 results from an estimated 900 matches similar to: "R-beta: Batch jobs in Win32 version?"
1998 Sep 27
1
Sv: R-beta: windows and dynload. ?Win98
It does, at least for a while. But when various more or less well behaved programs enter the scene (harddisk) things changed, at least for me. Reinstallation of R or windows didn't help, and I did not want to start again from scratch with a reformat. I used rw0613.
-----Oprindelig meddelelse-----
Fra: Douglas Steele <Douglas at dsteele.demon.co.uk>
Til: r-help at stat.math.ethz.ch
1998 Sep 16
2
R-beta: windows and dynload.
I get an error:
Error in dyn.load(file) : unable to load shared library
"D:\R_CODA\RW0613\library\eda\libs\eda.dll"
with almost all the packages. I tried to use "require" and tried also to
copy the dll's to the bin directory and nothing helped.
Any ideas ?
Thanks for your efforts
Troels
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help
1998 Sep 16
4
R-beta: A new version of R-0.62.3 for Win3.1/Win32s, Win95 and WinNT
I have just made available on ftp://sirio.stat.unipd.it/pub/R a
new version of R for MsWindows compiled with gcc-mingw32.
Enclosed you can find the README. Since there are many news
(with respect to my previous port, rw0613), please read it.
guido
------------------------ README ----------------------------------------
rw0623b.zip is a binary distribution of R (based on the last
1998 Sep 16
4
R-beta: A new version of R-0.62.3 for Win3.1/Win32s, Win95 and WinNT
I have just made available on ftp://sirio.stat.unipd.it/pub/R a
new version of R for MsWindows compiled with gcc-mingw32.
Enclosed you can find the README. Since there are many news
(with respect to my previous port, rw0613), please read it.
guido
------------------------ README ----------------------------------------
rw0623b.zip is a binary distribution of R (based on the last
1998 Sep 16
4
R-beta: A new version of R-0.62.3 for Win3.1/Win32s, Win95 and WinNT
I have just made available on ftp://sirio.stat.unipd.it/pub/R a
new version of R for MsWindows compiled with gcc-mingw32.
Enclosed you can find the README. Since there are many news
(with respect to my previous port, rw0613), please read it.
guido
------------------------ README ----------------------------------------
rw0623b.zip is a binary distribution of R (based on the last
2012 Oct 29
6
export variable from bash to R
Dear R experts
This probably seems very easy to you guys, but I'm a beginner and would be
really glad if someone helped me with this:
I am trying to automate the execution of an R script (let's call it
"myscript.R") by passing a variable from a bash script to myscript.R.
I know I can use the command Rscript, but I don't know how to declare in
bash which variable will be
1998 May 27
0
R-beta: R-0.61.3 for MsWindows3.1+Win32s available
I have just uploaded to CRAN a binary distribution of R for
Windows3.1 + Win32s.
You can also find it at ftp://sirio.stat.unipd.it/pub/R
guido m.
---------------------------readme.31----------------------------------------
rwin31b.zip contains a binary distribution of R-0.61.3 for MsWindows3.1
with Win32s installed. The executable and the dll's are compiled
with egcs-mingw32.
This
1998 May 27
0
R-beta: R-0.61.3 for MsWindows3.1+Win32s available
I have just uploaded to CRAN a binary distribution of R for
Windows3.1 + Win32s.
You can also find it at ftp://sirio.stat.unipd.it/pub/R
guido m.
---------------------------readme.31----------------------------------------
rwin31b.zip contains a binary distribution of R-0.61.3 for MsWindows3.1
with Win32s installed. The executable and the dll's are compiled
with egcs-mingw32.
This
2011 Sep 07
1
process id of an R script
I have a script that runs as a cron job every minute (on Ubuntu 10.10 and R 2.11.1), querying a database for new data. Most of the time it takes a few seconds to run, but once in while it takes more than a minute and the next run starts (on the same data) before the previous one has finished. In extreme cases this will fill up memory with a large number of runs of the same script on the same data.
2005 Feb 25
3
passing command line arguments to 'R CMD BATCH myScript.R'
Hi Community,
I have a question about how to pass command line parameters to R script
running in the batch mode. The problem is: there is a banch of data
files which are to be processed by R script called from a web-server,
i.e. in the batch mode. The web server generates data files and passes
their names calling 'R CMD BATCH' one by one for every file. Now the
question is how to
2010 Jun 30
0
drb problem? ringy-dingy won't answer...
The following code works fine as long as I don''t try to run it through
the distributed server. It doesn''t get there...
It runs fine out of delayed_job, runs fine if called directly.
But if ''distrib'' is true (the default) it runs right up to the call to
the server and right past it without getting to the server or raising
any errors.
Am using Ruby 1.8.6.26 ,
2004 Sep 08
2
'Hangup' not hanging-up, is this intended behaviour?
Greetings folks;
I have a bit of a conundrum, and I can't tell if Asterisk is doing
something daft, or whether I'm clean missing out why it's doing what it's
doing. So, I have a dialplan that looks a little like this:
--------------------
[start]
include => dids
include => everythingelse
[dids]
; Test
exten => 8378,1,SetCallerID(3015551212)
exten => 8378,2,Hangup
2008 Oct 23
1
ManageSieve textual fronend wanted
Is there some simple textual frontend to the ManageSieve protocol somewhat easier to use than gnutls-cli? I.e. something to use like
managesieve -u ef putscript myscript < /tmp/myscript
Password:
managesieve -u ef setactive myscript
Password:
simply doing the TLS authentication and length computation for me.
2013 Aug 27
1
return the name of source.
Is there a fuction that will allow me to retrun the filename for a script
from within that script.
fir instance
If I have a script "myscript.r":
FileName<-unknown.fucntion()
print(FileName)
and run it
source("myscript.r")
will return
"myscript.r"
Thanks
Nevil Amos
[[alternative HTML version deleted]]
2018 Sep 28
0
Simple bash question
On 28/09/2018 15:39, Jerry Geis wrote:
> I am calling a bash script and passing in somestring that includes a "$"
>
> myscript "$plusmore"
>
> I want to assign in the myscript the $1 arg to something like
> MYTEXT="$1"
>
> when I do that I dont get what I'm expecting. if I do
> MYTEXT='$1'
> I still dont get what I'm
2010 Feb 10
0
getting input from the console when running R in batch mode
Hello list:
I am using R through Geany in Ubuntu. The way i have Geany configured is that upon invoking the exectute command, Geany does a "R <myscript.R >myscript.out", thus getting all input from the myscript.R file and redirecting all output to the myscript.out file.
This is a problem when I want to read, say a numeric value, from the keyboard, or when i'd like to output
2010 Nov 02
2
get the scripname within the executed myscript.r
Dear R-users!
Is there a way to obtain the name of the executed myscript.r, i.e. when
cmd> rscript myscript.r
is executed? (The name of the script in this case is "myscript.r")
Here is the explanation of why I would like to get that: Why: I have
prepared a set of scripts (decompose_data.r, plot_with_higher_resolution.r,
plot_3D.r, etc.) placed in a root directory at one place. I
2006 Jun 20
4
Prototype $A not defined
Hello,
I apologize for posting prototype related email to this list, yet I
have not seen any reference to email or list on the prototype web site
and I know the author of that library is part of the rails development
team so I am trying to reach him.
Basically I have installed "FireBug" which is a
javascript/html/css/dom debugger for firefox and since I plugged
prototype.js and
2012 Aug 10
1
question about windows Rgui.exe startup
Hi all,
I had a specific question about the loading of objects
into R. I apologize in advance if I have overlooked anything in the
manual but as far as I can tell I have yet to find a solution to my
problem.
I am on a Windows platform.
So what I am trying
to do is have R read in a binary file on startup from the Windows system
command line and startup Rgui.exe with these options without
2001 Oct 08
1
Yet another batch mode question
Hello all and thanks in advance,
I know you can start R with either:
1. R CMD BATCH myfile.R
or
2. R < myfile.R
My question is this: what if I want multiple input files and/or command
line arguments. For example, under unix you can run a script command (in
a shell language, perl, or python) like:
python myScript.py
or better yet, if you have things set up right, you can place a