Displaying 10 results from an estimated 10 matches for "rw1023".
Did you mean:
rw1022
2001 Apr 03
2
Can't install "e1071"
I observed the same behavior as Edward this morning with R-1.2.2 on Red Hat
Linux 7.0. There appears to be a problem with the library in netpbm-9.5-5,
even after hunting down the missing shhopt.h that pbmplus.h is looking for.
I worked around the problem by compiling e1071 without pbm support (moved
pbm.c to pbm.c.bak).
Matt
Matthew R. Nelson, Ph.D.
Director, Information Systems
Esperion
2001 Apr 03
2
Can't install "e1071"
I observed the same behavior as Edward this morning with R-1.2.2 on Red Hat
Linux 7.0. There appears to be a problem with the library in netpbm-9.5-5,
even after hunting down the missing shhopt.h that pbmplus.h is looking for.
I worked around the problem by compiling e1071 without pbm support (moved
pbm.c to pbm.c.bak).
Matt
Matthew R. Nelson, Ph.D.
Director, Information Systems
Esperion
2001 May 11
1
Windows, RCMD INSTALL and path (PR#939)
Full_Name: David Firth
Version: 1.2.3
OS: Windows NT4
Submission from: (NULL) (163.1.103.107)
Two things that look like bugs:
1. RCMD INSTALL does not seem to cope with quotes in the Windows path. With my
path set to
PATH="C:\R\Rtools";"C:\R\rw1023\bin";C:\Perl\bin\;C:\WINNT\system32;C:\WINNT;C:\
mingw2\bin
I get, for example,
C:\R>RCMD INSTALL boot
RCMD INSTALL boot
make: Entering directory `/cygdrive/c/R/rw1023/src/gnuwin32'
make DLLNM= EXTRADOCS= \
-C C:/R/boot PKG=boot RHOME=C:/R/rw1023 RLIB=C:/R/rw1023/li...
2001 May 30
1
Rcmd REMOVE does not allow --library argument (PR#957)
This is in Windows 98. The problem exists in both rw1021 and rw1023, using
ActiveState Perl builds 620 and 626:
C:\>Rcmd REMOVE --library=C:/R/Rlibs RBMDS
Unknown option: library
Usage: Rcmd REMOVE [options] pkgs
Remove the add-on packages specified by pkgs from the default library
tree (/library) or the tree specified via `--library'.
Options:
-l, --li...
2001 Apr 29
1
R 1.2.3 for Windows available
...istribution of R 1.2.3 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
=============================
rw1023
======
Alternative installers based on Inno Setup 2.0.x, either SetupR.exe or
miniR* (which fits on four floppies).
The location of R_HOME and the version can optionally be recorded in
the Registry (and will be used by the DCOM interface). The Inno Setup
installers register the installation, and...
2001 Apr 29
1
R 1.2.3 for Windows available
...istribution of R 1.2.3 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
=============================
rw1023
======
Alternative installers based on Inno Setup 2.0.x, either SetupR.exe or
miniR* (which fits on four floppies).
The location of R_HOME and the version can optionally be recorded in
the Registry (and will be used by the DCOM interface). The Inno Setup
installers register the installation, and...
2001 Mar 22
1
Preview of an alternative R for Windows installer
...account,
for the current user otherwise.
This was built from my everyday-use version of R so should be a better
version than rw1022 for routine use. However, this is not an official
release!
I would appreciate feedback on this: in particular
if people like it,
if `c:/Program Files/R/rw1023' is a good default install folder,
if there is still a need for floppy-sized installs (which Inno Setup
can generate).
Direct feedback to me only, please.
If the reaction is positive, my intentions are to make both forms of
installation available for 1.2.3, and then only this form f...
2001 Jun 27
2
install.packages (PR#998)
The packages feature of Rgui is great! However it looks the directory structure
was changed for http://cran.r-project.org/bin/windows/contrib/, such that some
the packages are now under /rw1030 (e.g., VR) and are not found by
install.packages(). Thus the error message:
trying URL `http://cran.r-project.org/bin/windows/contrib/VR.zip'
Error in download.file(url, destfile, method, mode =
2001 Jun 09
2
r-mode (ESS/XEmacs)
Hello,
please excuse me if this is not the appropriate
mailing list, but I'll give it a try!
I recently switched from using Emacs 20.7.1 to
XEmacs 21.4, both on cygwin / MS W2K.
On Emacs the ESS 5.1.17 was working well, but
now, when calling R from within XEmacs,
it first asks for the working directory,
then says "R process is not running".
The ESS buffer holds the
2001 May 30
2
environments
I would like to be able, inside a function, to create a new function, and
use it as part of a formula as an argument to, say, gnls or nlme. for
example:
MyTop <- function(data=dta) {
Cexp <- function(dose,A,B,m){...}
Model <- as.formula(paste("y","~ Cexp(",paste(formals(Cexp),collapse
=", "),")"))
MyCall <-