Displaying 20 results from an estimated 29 matches for "rw1020".
Did you mean:
rw1022
2000 Dec 22
1
rw1020 Rcmd INSTALL path\ deletes rw1020\library\* (PR#789)
The trailing backslash seems to be the culprit.
After looking at rw1020\bin\INSTALL, I noticed
$pkg =~ s/\/$//;
which I assume is to strip the trailing slash from a package name
before obtaining the package name and cleaning out its directory
I added
$pkg =~ s/\\$//;
immediately after this line. Rerunning
Rcmd INSTALL C:\rw1011\src\library\bqtl\
with that c...
2001 Jan 05
2
running Rcmd INSTALL, again
Ok, one last try. R1.2.0, WinNT 4.0:
[R is installed in: R_HOME=D:\Programme\R\rw1020]
Can anyone give a hint what the following error message (when running Rcmd
INSTALL) means and what to do about it?
cd D:\Programme\R\rw1020\src\library
D:\Programme\R\rw1020\bin\rcmd install testfunctions
make: Entering directory `/cygdrive/d/Programme/R/rw1020/src/gnuwin32'
dlltool -k --as...
2000 Dec 29
2
how to create help files
...files.
For illustration, here is a simple example of where I'm stuck:
> # first, create a simple function f1:
> f1 <- function(x) x^2
> # create directories where a package called "testfunctions" with my own
functions will live:
> R.home()
[1] "D:\\Programme\\R\\rw1020"
> mypath <- paste(R.home(),"\\library\\testfunctions", sep="")
> mypath
[1] "D:\\Programme\\R\\rw1020\\library\\testfunctions"
> dir.create(mypath)
> dir.create(paste(mypath, "\\R", sep=""))
> # dump the function into file &q...
2001 Jan 04
0
running Rcmd INSTALL (creating help files revisited)
...I do is open a commands
window (cmd.exe) in directory "D:\", and then try the following:
-----
REM this is how my PATH is set:
D:\>set path =
%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\system32\nls\DEUTSC
H;d:\PROGRA~1\pfe;
d:\PROGRA~1\perl\bin;D:\Programme\PGPNT;D:\Programme\R\rw1020
\bin;D:\Programme\R\rw1020\tools;D:\Programme\R\rw1020\share\perl\R
REM "rgui" is found and launched correctly, so I suppose my path is ok:
D:\>rgui
REM when typing "rcmd", no error message is given, so I suppose this is
found as well:
D:\>rcmd
REM But trying to get hel...
2000 Dec 18
1
Packages for R 1.2.0 for Windows
I have re-built all the compiled packages for R 1.2.0 for Windows, and the
set available in CRAN/bin/windows/contrib are now for rw1020.
If you are upgrading to rw1020, please replace all the compiled
packages you have downloaded by ones from this set.
There a few packages available for the first time:
RMySQL mlbench netCDF
and a few that are not yet running on 1.2.0 on any platform
hdf5 locfit wle (crashes with an array over...
2000 Dec 18
1
Packages for R 1.2.0 for Windows
I have re-built all the compiled packages for R 1.2.0 for Windows, and the
set available in CRAN/bin/windows/contrib are now for rw1020.
If you are upgrading to rw1020, please replace all the compiled
packages you have downloaded by ones from this set.
There a few packages available for the first time:
RMySQL mlbench netCDF
and a few that are not yet running on 1.2.0 on any platform
hdf5 locfit wle (crashes with an array over...
2001 Jan 09
2
quantile function for noncentral f-distribution
hello R-friends,
I'm looking for a quantile function for the noncentral
f-distribution in the area of equivalence hypotheses testing.
Can somebody help me?
Many thanks
-----------------------------------------------------------------
Dipl. Inform. J. Hedderich
Institut f?r Medizinische Informatik Phone : 0431 /
5973182
und Statistik im Klinikum an der CAU
2000 Dec 18
1
Rwinst.exe problems
I've heard from several users who report no difficulties using the
Rwinst.exe installer for the released version of 1.2.0. I've blown away
all traces of 1.2.0 on my system and have re-downloaded all 10 zip files
and the installer on both my NT and Win2K boxes. The memory-overwrite
error persists on both systems, suggesting that there is some
incompatibility between the 1.2.0
2001 Jan 05
2
AW: running Rcmd INSTALL, again
Indeed, there is no file named "dlltool" anywhere around here!
So, at last I am beginning to suspect that my collection of tools is
incomplete.
What I have got is "rw1020sp.zip" and
"http://www.stats.ox.ac.uk/pub/bdr/RWin/tools.zip". These are properly
istalled, I think.
readme.packages says "If your package has no C nor Fortran nor C++ sources,
see `Simple ports'
near the bottom of this file." I don't have any of these sources; go...
2001 Feb 26
1
trying to find the function banking()
Colleagues
----------------------------------
System info:
R version rw1020 on NT
ESS using emacs ver. 20.4
----------------------------------
Can anyone please tell me where to find the function "banking()"
containing Cleveland's solution to optimising graph aspect ratio? It is
mentioned in Venables and Riply 1994, pg. 112, Ex. 3.7, q. 3.5.
I have not...
2001 Jan 18
1
r help message
Colleagues
----------------------------------
System info:
R version rw1020 on NT
ESS using emacs ver. 20.4
----------------------------------
To keep my scripts short and tidy, I want to call sub-functions and return
variables from these for subsequent use in the calling function.
e.g.
"test.smooth.opc.time.series" <-
function()
{
load.o...
2001 Jan 14
2
Help
Dear sir,
I am using R in windows. I want to extend R Memory
size.
I use the following command, but unfortunately it
doesn't work.
-- vsize=15M --nsize=1000K
Your help is appreciated.
Thanks,
Esmail Amiri.
__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail.
http://personal.mail.yahoo.com/
2001 Jan 18
1
ESS Default function template for R
Colleagues
----------------------------------
System info:
R version rw1020 on NT
ESS using emacs ver. 20.4
~/.emacs
; Default function template
(setq ess-insert-function-templates t)
----------------------------------
When loading a new function into the R workspace using ctrl-CD I would
like the default function template to come up, rather than a blank buffer. I
thou...
2001 Feb 19
1
means by column after split
Colleagues
----------------------------------
System info:
R version rw1020 on NT
ESS using emacs ver. 20.4
----------------------------------
I need to get the means for each column of a dataframe in the list
created by splitting a data frame. At present, I am getting the mean of all
columns in aggregate.
The structure of the unsplit data is:
> shuttle.tr1[1:10,]...
2002 Jun 12
6
Rcmd on Windows
Hi there,
I was tryting to use "Rcmd SHLIB --help" on Windows RGui. However it always
gives me sytax error message. I wonder whether you have any suggestion.
Thanks in advance!
Best,
Yunda
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help",
2001 Jan 03
1
package/ date/ download problem
...although I do get the help files for
as.date.Rd
date.ddmmmyy.Rd
date.mdy.Rd
date.mmddyy.Rd
date.mmddyyyy.Rd
date.object.Rd
mdy.date.Rd
As an alternate method I tried using the install.packages function from R
> install.packages("date","C:\Program Files\R
environment\rw1020\library\","http://www.r-project.org",method = "auto",
available = NULL, destdir = NULL)
Error: syntax error
but was not successful (I'm not sure why).
Any advice would be helpful.
Thanks
Sam
Sam McClatchie, Research scientist (fisheries acoustics))))))))))
NIWA (...
2002 Nov 20
5
re| memory.limit()
Mpiktas <mpiktas at delfi.lt> wrote :
>Something like memory.limit(512) will do the trick
Luis Silva <lm.silva at sapo.pt> wrote :
>I had that problem already. In windows I did this
>C:\Programas\R\rw1060\bin\Rgui.exe --max-mem-size=400M
>in the icon path of R. You'll have to try several sizes.
I believe recent versions of R on Windows automatically set
2000 Dec 20
1
syskern fails Rcmd check on Windows, gives incorrect information (PR#781)
...test2.emf
GSD2.EMF libpng-1.0.8.tar.gz 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&qu...
2002 Jan 05
1
R-WinEdt question - answer
...dEdt.
Below I will copy the instructions on using R-WinEdt by Renaud Lancelot
(except for the last paragraph which is by Uwe Ligges) in case they can be
of help to anyone else.
Thank you very much for the clear answers.
INSTRUCTION ON USING R-WINEDT -- RENAUD LANCELOT, UWE LIGGES
- Install R (rw1020 or later)
- Install WinEdt 5 (V. 5.2, Build: 20001213 or later)
Note: WinEdt is Shareware (http://www.winedt.com).
- Unzip the archive into directory ....\winedt\plugins\r-winedt
(e.g. "c:\program files\winedt\plugins\r-winedt")
If the directory does not exist, you have...
2000 Aug 31
0
Locales and Windows
...Windows being what it is, this is a problem. It seems that with the
standard runtime crtdll.dll that rw1011 uses, Windows 9x does not know
about locales, whereas NT does but does not get the details right.
It is also possible to compile R against msvcrt.dll, and we are proposing
to use that from rw1020 on. That appears to use locales correctly on both
Windows 98 and NT (at least on my machines). I have compiled R-1.1.1
against msvcrt.dll, and made a replacement set of DLLs available.
These should just drop in over an unpacked copy of rw1011.
First some warnings:
1) This is not an official rel...