Displaying 20 results from an estimated 30 matches for "rw1021".
Did you mean:
rw1022
2001 Feb 06
3
RWin 1.2.1: Can't access sample datasets, e.g. MASS
...e:
======> Data set `cabbages' not found in: data(cabbages) <=====
> ls()
[1] "last.warning"
> search()
[1] ".GlobalEnv" "package:MASS" "package:ctest" "Autoloads"
[5] "package:base"
> .lib.loc
[1] "D:/R-WIN/RW1021/library"
> Sys.getenv("R_HOME")
R_HOME
"D:\\R-WIN\\RW1021"
> dir("D:\\R-WIN\\RW1021\\library\\MASS\\data")
[1] "00Index" "abbey.rda" "accdeaths.rda" "Aids2.rda"
[5] "Animals.rda...
2001 Jan 30
4
Link with C code
Hello,
I am using cygwin (latest version) and I managed to generate a dll partly
with rcmd shlib although there was a problem with both the resouce file (I
had to remove "FILEOS VOS__WINDOWS32") and the command line for gcc
(--shared is not supported for instance).
So I would like to know which compiler/environment you advise to use for
windows OS.
Then I could load the library in R
2001 Feb 20
0
dyn.load() and dyn.unload() under Windows
...atus
major 1
minor 2.1
year 2001
month 01
day 15
language R
I have a library called "weaklink" that I am making, which has exactly one
dll called weaklink.dll, in directory D:\Rw1021\library\weaklink\libs. I
have used mingw32/gcc 2.95.2-1 to make the dll, with these commands I got
from Professor Ripley a couple weeks ago (thanks for that, and any errors
are due to me!):
gcc -O2 -c weaklink.c -ID:\Rw1021\src\include
dlltool --export-all-symbols --output-def weaklink.def weakli...
2001 Jan 21
0
RW1021 and wine
Just thought people might be interested to know that the latest version
of R-win now runs under Wine, the windows emulator for Linux (ver.
20001202). (I originally tried this a couple of releases back because a
student seemed to be having system-specific problems and I was attempting
to be lazy.) The recent switch from crtdll to msvcrt seems to have
helped with Wine compatibility.
I
2001 Feb 08
2
nstall.packages
Hi!
I am new to R. I want to install "packages" from Package Sources in the
web. I follow the instruction and use the "install.packages" but no
luck.
Here is what I did:
> install.packages(gss,"C:/R/rw1021/library", CRAN = options("CRAN"),
contriburl =
contrib.url("http://cran.r-project.org"),
method = "auto", available = NULL,
destdir = "C:/R/rw1021/library")
The error mes...
2001 Mar 07
1
Windows: updating to R 1.2.2
...nstalling R
to be clear, I'm not so happy about updating.
I want to update from R 1.2.1 to R 1.2.2 (mainly so I can get the debugged
version of pictex() ).
Now I have downloaded the base zip files, say to Z:\Program Files and my
existing installation of R 1.2.1 is sitting in
Z:\Program Files\rw1021.
Running rwinst.exe I need to nominate an Install directory. I can nominate
a new directory Z:\Program Files\rw1022, but then I will not be able to
access my packages already installed for R 1.2.1.
I can nominate Z:\Program Files\rw1021 to install over the top of the old
version, but I am scared...
2001 Mar 01
1
docs + packages (PR#858)
...vival5, nlme) installed correctly and they work;
so the missing "lib"
> install.packages(c("sm","sn","integrate","survival5","nlme"))
Delete downloaded files (y/N)? y
Warning messages:
1: argument `lib` is missing: using C:/STAT/R/RW1021/library in:
install.packages(c("sm", "sn", "integrate", "survival5", "nlme"))
2: No package "sn" on CRAN. in: download.packages(pkgs, destdir = tmpd,
available = available,
3: No package "integrate" on CRAN. in: download.packa...
2001 Feb 08
2
dnbinom(,size<1,)=0 (PR#842)
...: Thu, 08 Feb 2001 17:10:23 +0000
From: Yudi Pawitan <yudi@stat.ucc.ie>
To: Mark Myatt <mark@myatt.demon.co.uk>
Cc: R-Help <r-help@stat.math.ethz.ch>
Subject: Re: [R] Goodness of fit to Poisson / NegBinomial
Sorry, Mark, the program worked for Rw1011, but this is
what happened in Rw1021:
> dnbinom(0:5,.9,.4)
[1] 0.4383833 0.0000000 0.0000000 0.0000000 0.0000000 0.0000000 #wrong!!
while, the correct result from Rw1011 is:
> dnbinom(0:5,.9,.4)
[1] 0.43838329 0.23672698 0.13493438 0.07826194 0.04578323 0.02692054
I have added a corrected dnbinom() below, which makes the...
2001 Apr 28
1
Rprofile
Hello again,
If I want to have a set of add-ons functions (say: nlme and tseries) loaded
to R everytime I run R, do I put command:
library(nlme)
library(tseries)
in the rw1021/etc/Rprofile file?
thanks,
Peppy
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subj...
2001 May 31
1
Building shared libraries under Windows
...h with a source file and with an object file, but I got error messages in both cases.
I get the same error messages both using a Dos shell and Cygwin.
If I use the source file, I type:
rcmd shlib prova.c
and what I get is:
make[1]: `libR.a' is up to date.
windres --include-dir C:/R/RW1021/src/include -i prova_res.rc -o prova_res.o
windres: no resources
make: *** [prova_res.o] Error 1
If I use the object file, I type:
rcmd shlib prova
and what I get is:
make[1]: `libR.a' is up to date.
make: *** No rule to make target `prova.o', needed by `prova.a'....
2001 Mar 13
1
(PR#876)
png files do not appear to work properly on the distributed
version for windows.
this was not a problem for rw1021.
> png()
> plot(rnorm(100),rnorm(100))
> dev.off()
libpng error: Application must be recompiled; version 1.0.6 was incompatible
Ian Wilson
--please do not edit the information below--
Version:
platform = i386-pc-mingw32
arch = x86
os = Win32
system = x86, Win32
status =...
2001 Feb 09
1
demo(tkttest) exits with error messages
I've just installed tcl version 8.3 for windows for use with rw1021,
running on win95 (4.00.950). demo(tkttest) gives the following error messages.
> require(tcltk) || stop("tcltk support is absent")
Loading required package: tcltk
Error in firstlib(which.lib.loc, package) :
TCL_LIBRARY is not set
Error in eval.with.vis(expr, envir, enclos)...
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:...
2001 Mar 20
1
tcltk on Windows 98
...fine on all but one of those machines. On
that one (system information quoted below), we persist in getting the error
message:
> require (tcltk)
Loading required package: tcltk
Error in dyn.load(x, as.logical(local), as.logical(now)) :
unable to load shared library
"C:/PROGRA~1/R/RW1021/library/tcltk/libs/TclTk.dll":
LoadLibrary failure: One of the library files needed to run this
application cannot be found.
[1] FALSE
TCL_LIBRARY is set (when it is not, the error message is different), and we
have reinstalled Windows 98, tcltk, and R at least once. The above path
points...
2001 Mar 03
11
Emacs & ESS under Windows
.../ESS-5.1.8.zip
4. Unpack the downloaded file in "D:\emacs-20.4\lisp\" (of course, keeping
the tree structure of the zip archive).
5. Edit the file "D:\emacs-20.4\lisp\ess-5.1.8\lips\ess-site.el", and
modify the line #144 to this:
(setq-default inferior-R-program-name "D:/rw1021/bin/Rterm.exe") ; msdos
systems
This is if you installed R for Windows in D:\; if you installed it, for
instance, in C:\Program Files, then this line must be:
(setq-default inferior-R-program-name "C:/Program
Files/rw1021/bin/Rterm.exe") ; msdos systems
(The semicolons in this f...
2000 Dec 20
1
syskern fails Rcmd check on Windows, gives incorrect information (PR#781)
...z test3.emf
R-1.2.0.tgz library test4.emf
R.bug.report mri.dat test5.emf
Rconsole mydata texinfo-4.0.tar.bz2
Rdist packages tools
TB rw1020 tools.zip
VR3sc rw1021 winold.zip
addlibs rw1030 zlib113.zip
> system("ls", intern=TRUE)
[1] "#R.bug.report#" "DF.R" "GSD2.EMF"
[4] "R-1.2.0.tgz" "R.bug.report" "Rc...
2001 Mar 02
1
VR_6.2-4 is released
...t is a collection of bug fixes (many to
documentation, thanks to Kurt Hornik's great tools undoc and codoc) and
small enhancements for R.
It does need R 1.2.2 to install (the help files make use of new markup
for methods) but only 1.2.0 to run. Thus the precompiled Windows
version will run on rw1021.
--
Brian D. Ripley, ripley at stats.ox.ac.uk
Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/
University of Oxford, Tel: +44 1865 272861 (self)
1 South Parks Road, +44 1865 272860 (secr)
Oxford OX1 3TG, UK Fax:...
2001 Feb 06
0
Fwd: Re: RWin 1.2.1: Can't access sample datasets, e.g. MASS
...t;> > ======> Data set `cabbages' not found in: data(cabbages) <=====
>><snip>
>> >
>> > Same result for any other dataset.
>>
>>I get this for MASS only, not for other packages
>>
>>
>> > All packages were installed in RW1021/library/<pkg>, some by manual
>> > download/rinst some by install.packages().
>> >
>> > Note that after installation, the library/MASS/data directory contained
>> > ONLY RData.zip, so I unzipped it; the same for the other data (and R-ex)
>> > direc...
2001 Feb 22
0
Installing chron
...was
> unable to locate one at the CRAN site.
It should be there in bin/windows/contrib (and seems to be at Vienna).
It is definitely at
http://www.stats.ox.ac.uk/pub/RWin/chron.zip
> I also tried extracting the tar.gz file with winzip directly to the folder
> C:\Program Files\R Language\rw1021\library. However that results
> in:
>
> > library(chron)
> Warning message:
> Package `chron' contains no R code in: library(chron)
>
That would need to be unpacked in src/library, then installed. Please
remove library\chron before trying anything else.
> Thanks f...
2001 Mar 02
1
VR_6.2-4 is released
...t is a collection of bug fixes (many to
documentation, thanks to Kurt Hornik's great tools undoc and codoc) and
small enhancements for R.
It does need R 1.2.2 to install (the help files make use of new markup
for methods) but only 1.2.0 to run. Thus the precompiled Windows
version will run on rw1021.
--
Brian D. Ripley, ripley at stats.ox.ac.uk
Professor of Applied Statistics, http://www.stats.ox.ac.uk/~ripley/
University of Oxford, Tel: +44 1865 272861 (self)
1 South Parks Road, +44 1865 272860 (secr)
Oxford OX1 3TG, UK Fax:...