Displaying 20 results from an estimated 6000 matches similar to: "about the "mini-distribution" (R for Win )"
2003 May 20
1
R in BATCH mode
Dear all,
In R<=1.6.2 I usually used the following code (in DOS prompt) to run R in
batch mode
C:\documents> Rcmd BATCH myfile.R
and I could see the results (including warning messages) in the file
myfile.Rout
In R.1.7.0 I'm experiencing the followings:
(1) even if I type "Rcmd BATCH myfile.R myfile.Rout",
no file myfile.Rout is created, but just a "&1" file
2003 Feb 11
3
Problems with Rcmd check on Win 2000 & rw1062
When I run Rcmd check on a package on my Windows 2000 machine, I get a
series of error messages like the following:
* checking generic/method consistency ...c:\DOCUME~1\R5018~1.WOO\LOCALS~1\Temp/R
utils138414013: cannot open c:DOCUME~1R5018~1.WOOLOCALS~1Temp/Rin138408157: no s
uch file
It looks as if a Windows style path to the temp directory is not being interpreted correctly, with backslashes
2003 May 12
1
problems with Rcmd BATCH (PR#2965)
Hello,
I have a test file that runs OK with
> Rterm.exe --no-restore < filename.R
When I try
> Rcmd BATCH filename.R
I get the following error message:
Can't locate R/Utils.pm in @INC (@INC contains:
C:\PROGRA~1\R\rw1070\share\perl
c:/Perl/lib c:/Perl/site/lib .) at
C:\PROGRA~1\R\rw1070/bin/BATCH line 22.
BEGIN failed--compilation aborted at
C:\PROGRA~1\R\rw1070/bin/BATCH
2005 Feb 04
1
Is anyone using the MiniR distribution?
I currently build two different versions of each Windows binary: the
rwXXXX.exe full installation program (with the next release looking to
be around 25 Megabytes), and a series of 8 diskette-sized files named
miniR*.
The miniR files only include a minimal installation of R, and are
rarely tested. Rather than building something that may not even work,
I'd like to stop building them.
2003 Apr 25
2
sjava w2k
..sorry for this "repeated" off-topic question, but i look
for any suggestion in the manuals, find nothing related?
library(Sjava)
Error in firstlib(which.lib.loc, package) :
JAVA_HOME is not set
Error in library(Sjava) : .First.lib failed
...what i have to done?
many thanks & regards,christian
2003 Jun 25
2
rw1062
hi
I need 'rw1062.zip' since i can't get excel, R1070 or R1071 to work with the R (D)COM Server
everything worked fine in the god rw1062 days
the lapack routines can't be loaded
'unable to load shared library c:\r/moduleslapack.dll, the specified library could not be found'
don't know if it's the forward slashes that anoys windows
btw, the libraries are in the
2004 Dec 26
1
Bug in miniR installation (PR#7448)
While installing the windows miniR programm the setup wizard looks for
the MINIR-1.bin, but the downloaded file is named MINIR_1.bin. In
consequence installation aborts. The user can fix this bug by changing
manually the dash of the file name. Please, make sure that both the
setup wizard and the .bin refer to the same sintax.
Thanks!
Luis Frank
2003 May 08
3
R crashes with package SJava; was Memory leakage?
Dear all,
Maybe this has something to do with R crashing?
When my R version crashes, there is Rgui.exe still
running in the background (i.e. W2K's task manager
recognises it only as a process, which apparently
is using almost 100% of the CPU).
I can reproduce that by "using" the SJava package
(from Brian Ripley's homepage, as suggested on
http://www.omegahat.org/RSJava/).
2003 Feb 10
2
multilm for simseg/acm
hi,
for working with the simseg/acm approach i need multilm and it seems
that the last version is 0.1-4.tar ?
What's wrong in the description file, if i attempt install the package ?
c:\DataMining\rw1062\bin>Rcmd Install multilm
Malformed DCF file (file multilm/DESCRIPTION, line 6)
[R1.6.2 /W2K]
P.S.
..hmm a solution might be import the functions from multilm
in my .Rprofile, but i
2004 Feb 05
2
I am totally lost on how to install R . . .
First . . . SUBSCRIBE (I want to subscribe to the list).
Second, I am trying to install R on windows XP. In looking at the
instruction manual I get the following:
The simplest way is to use 'rw1081.exe' or 'miniR.exe'. Just
double-click on the icon
and follow the instructions. If you installed R this way you can
uninstall it from the Control Panel.
How do I get the
2003 Mar 06
1
Some bugs in Rcmd check ? (PR#2608)
Hello!
I have some problems using Rcmd, bacause I get errors I do not understand. I
will write down what I did. Perhaps you can help me?
I have a small would-be package called "globaltest", containing only the
files
DESCRIPTION
INDEX
R/globaltest.R
man/globaltest.Rd
I say:
C:\>Rcmd check C:/Goeman/globaltest
In the output it first complains that 'sh', 'make',
2002 Jul 23
1
installation R (OS: windows)
I''ve downloaded R (version: R-1.5.1). I looked at your instructions
to install it into my pc, but after extracting files with winzip, I
clicked on src/gnuwin32/installer/install but icon was in my directory, but was not on.
I also looked for SetupR.exe or miniR.exe icons, but I didn''t find them.
Now, I don''t know how to get the installation.
Could you help me please?
2003 Jun 02
2
Very slow startup on Win32
Hello,
I installed R on Windows Terminal Server (a variant of NT) from the binary release. This is my first encounter with R. I have two questions.
The initialization time is very long, several minutes between clicking on the "R 1.7.0" icon and getting to the ">" prompt. During that time, the machine appears to be idle.
When it finally comes ready, I'm
2003 May 16
1
Reloading a shared library with dyn.load
Hi,
I'm using dyn.load to load a shared library (compiled from C
code) into R. If I dyn.unload it and then dyn.load it again, I
get an hourglass icon in Rgui (R 1.7.0, Win 2000), and it
just sits there forever. I can't press Escape to stop the
current computation, but I can close Rgui without resorting to
using the Task Manager.
Is it a problem with my use of R_alloc? Do I need
2002 Sep 18
3
problem in deparse(substitute())
Hi all,
I am experiencing the following quite strange (at least in my knowledge)
problem in a simple function like the following:
fn<-function(y,v=2){
n<-length(y)
y<-y[(v+1):(n-v)]
plot(y,type="l",lty=3,xlab="Time",ylab=deparse(substitute(y)))
}
fn(rnorm(50)) #look at the plot!!!
The plot appears with numbers on the left side!
If I delete the
2003 Mar 18
1
Building hdf5 for ms-windows
I am trying to build hdf5 for ms-windows. I downloaded the hdf5_1.4.7.tar.gz, gunzipped it and got a tar file. I extracted everything into a directory tree called hdf5. I also found a Makevars.win and libhdf5.def in the R help archives from March 2002. I put those two in hdf5 as well.
I issued the command Rcmd build --binary hdf5
but got this message complaining it can''t find
2002 Sep 19
2
R 1.6 for windows?
On Thu, 19 Sep 2002 10:43:01 -0400 (EDT), you wrote in message
<200209191443.KAA17404@falmouth.bwh.harvard.edu>:
>Hi Duncan -- I am curious as to whether you are building/distributing
>R 1.6.0 for windows? There's nothing urgent about it, I have one.
>The question is how to identify a distribution URL if one exists.
I will be building and distributing the final release.
2003 Apr 24
1
RMySQL crash under R 1.7.0, but not 1.6.2
Hi,
I was able to connect to a MySQL database (called "zooscan" and with a table
"serie" under Win XP with R 1.6.2 using:
> library(DBI)
> library(RMySQL)
Warning message:
DLL attempted to change FPU control word from 8001f to 9001f
> drv <- dbDriver("MySQL")
> con <- dbConnect(drv, dbname="zooscan")
> dbExistsTable(con,
2003 Apr 17
4
A function as argument of another function
Dear all,
I would like to write a function like:
myfun<-function(x,fn) {xx<-exp(x); x*fn(xx)}
where fn is a symbolic description of any function with its argument to be
specified. Therefore
myfun(5,"2+0.3*y^2")
should return 5*(2+0.3*exp(5)^2),
myfun(5,"log(y)") should return 5*log(exp(5)) and so on.
I tried with "expression" and others, but without success.
2001 Jun 27
0
R-1.3.0 for Windows
A binary distribution of R-1.3.0 to run on Windows 95, 98, NT4.0 and 2000 on
Intel/clone chips is available at
http://sirio.stat.unipd.it/RWin
It will be mirrored at a CRAN site near you in a couple of days.
See below for a list of Windows-specific changes.
guido masarotto
(for the R-core team)
Windows-specific changes to R
=============================