Displaying 20 results from an estimated 20 matches for "rw1060".
Did you mean:
rw1040
2002 Dec 18
4
Running R on a Local Area Network
...s such as
x<-1:20
y<-1:20
plot(x,y)
So far, so good. Problem is with packages which I don't seem to be able to
access on the server (locally, I repeat, this works fine)
i.e. when I try library()
I get
no packages found
Warning message:
libraries `//ServerComputer/c/Program Files/R/rw1060/library',
`//SERVERCOMPUTER/C/PROGRA~1/R/RW1060/library' contain no packages in: library()
Does that ring any bell to one of you ? Am I trying to do something R was
never designed to do in the first place ?
Henri
2002 Oct 10
1
problem with Sweave on 1.6 on NT4
...ps pdf
You can now run LaTeX on Sweave-test-1.tex
---------
But the opening lines of Sweave-test-1.tex are:
---------
% -*- mode: noweb; noweb-default-code-mode: R-mode; -*-
\documentclass[a4paper]{article}
\title{A Test File}
\author{Friedrich Leisch}
\usepackage{a4wide}
\usepackage{c:etcRrw1060/share/texmf/Sweave}
\begin{document}
...
------------
The line '\usepackage{c:etcRrw1060/share/texmf/Sweave}' is wrong.
In V1.5.1 it used to read
\usepackage{c:/etc/R/rw1051/library/tools/Sweave/Sweave}
i.e. 'c:etcRrw1060' should be 'c:/etc/R/rw1060'
and I think the refer...
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 memory.limit to
the size of physical memory. For instance, on my 512m machines a
plain-vanilla install of R 1.6.1 returns
> memory.lim...
2004 Nov 28
1
Version names
I have Windows XP build scripts that look for R in a variety
of folders and if multiple ones are found, takes the last
one. For example, I currently have the following
in \Program Files\R :
rw1060
rw1062
rw1071
rw1071beta
rw1081
rw1090
rw1090dev
rw1091
rw1091pat
rw2000
rw2001beta
Note that it currently correctly gets rw2001beta but if I
add rw2001 then it will not pick it up since rw2001beta
would continue to sort after it.
I tried using dates in my scripts to pick out the right...
2004 Jun 27
1
help in R calling C function
...t(*alpha);
}
double test(double *alpha)
{
double value;
value = *alpha *3;
return(value);
}
I used "gcc -c main.c" and "Rcmd SHLIB main.o" and I got the main.dll file.
In R I use the following code to call the C function "main":
dyn.load("c:/Program Files/R/rw1060/bin/main.dll")
a=4.2
b=.C('main', as.double(a))
But the R system crashed. I know I can only define the function type in C
as "void" to be called by R. But what if I want to call another C function
in the "main" C function? Thank you for your help!
Sincerely,
Le...
2004 Jun 27
1
Re: help in R calling C function (Lei Liu)
...;Rcmd SHLIB main.o" and I got the main.dll file.
> In R I use the following code to call the C function "main":
I do not have too much experience using C, but do you need to compile
your test.c as well, something like
gcc -c main.c test.c
> dyn.load("c:/Program Files/R/rw1060/bin/main.dll")
I also suggest you to double check the path is correct.
> a=4.2
> b=.C('main', as.double(a))
Here you probably mean
a <- 4.2
b <- .C('main',as.double(a))
> But the R system crashed. I know I can only define the function type in C
> as "...
2002 Sep 19
2
R 1.6 for windows?
...n from Sept 25 to Oct 1, and I'm busy
preparing for that trip, I haven't been posting snapshots. If there's
a demand for them and Kevin has to stop, I could do so up to the 25th,
but not easily after that.
The final release will be posted in the usual place on CRAN. It will
be called rw1060.exe rather than SetupR.exe, and the rw1060??.zip
files will no longer be posted. The miniR files (which each fit on a
diskette) will be named as before, miniR.exe and miniR-1.bin up to
miniR-7.bin.
Duncan
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mail...
2002 Oct 10
3
Sweave (PR#2142)
In the 'RWeaveLatexSetup' function in the 'tools' package in R 1.6.0 , the
code below does not work (pdflatex can't find 'Sweave.sty'):
if (stylepath)
styfile <- file.path(R.home(), "share", "texmf", "Sweave")
else styfile <- "Sweave"
In R 1.5.1, that was:
if(stylepath)
styfile <-
2002 Dec 18
3
workspace vs. image
Hello [R]ians,
I'm hoping someone can clarify the difference between a Workspace Image
and Working Directory. I created a directory on my PC, say,
"C:\Program Files\R\Project1" and then saved my objects in
"C:\Program Files\R\Project1\.Rdata".
Then, in a subsequent session, I reloaded these objects using
> load("C:/Program Files/R/Project1/.RData")
At
2002 Oct 16
0
error in make pkg-...
Hi All,
I am trying to build a couple of packages from source, one of my own and
others. I have had this working under R1.5.0, now trying to set up on a new
machine under R1.6.0. Starting from various places, I am getting an error in
MkRules that I do not understand.
C:\PROGRA~1\R\rw1060\src\gnuwin32>make libR.a libRblas.a
MkRules:91: *** missing separator. Stop.
The example is from the text in readme.packages. I get the same error on
everything I've tried.
The only thing I can think of that I have done differently is to edit the
path variables in MkRules to point to all...
2002 Nov 19
0
memory
...nnot allocate vector of size 554 Kb
> Does anyone know how I can avoid this error?
>
> Error: cannot allocate vector of size 554 Kb
>
> I think my computer should have enough memory to allocate
such vector.
Hi,
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. For me
it worked with 400M. I think R simulates the memory in the hard
disk. Read de R FAQ.
--------------------------------------------
sapo.pt/kitadsl
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2003 May 05
1
Error in library(MASS) : package/namespace load failed
Dear all,
I have installed 1.7.0 on my Win XP and want to use MASS. But I get this
error message:
> library(MASS)
Error in namespaceExport(ns, exports) : undefined exports: abbey,
accdeaths, Aids2, Animals, anorexia, austres, bacteria, beav1, beav2,
biopsy, birthwt, ...
Error in library(MASS) : package/namespace load failed
I therefore again downloaded VR.zip. When I extracted the files I
2002 Dec 05
2
crimson editor
...y emacs)
OK, Crimson can be downloaded free in
www.crimsoneditor.com
It is really small (fits a flopy disk). After install you just fill in the
menu
tools < configure usertools :
menu text: R-batch
# this is just the directory where you have your R in batch
Command: C:\Archivos de programa\R\rw1060\bin\Rterm.exe
Argument: --vanilla < $(FileName)
Initial dir: $(FileDir)
And that is it... really simple. To do this you have to be able to use your
R in batch mode. I have started creating a syntax colour code for this
program (it is realy simple to do it...just asci file)...
and I was wonder...
2002 Aug 23
1
R_NilValue blows up on Windows
Ok, Here's the c code that's loaded into R as dll on windows:
#include <R.h>
#include <Rdefines.h>
SEXP test1(SEXP col);
SEXP test1(SEXP col)
{
SEXP col2;
Rprintf("no value!\n");
return col2;
}
Compiles ok with bcc32 into a dll, loads into R as part of a library, I
Run library(rkdb), then
> .Call("test1", 2)
no value!
And puf! Rterm crashes.
2002 Nov 07
3
Rcmd? Where?
Hello,
I got R 1.6.0 for windows and I need Rcmd, which was not included. Where can I
get it? (I have to start R and give the name of the file with the R-commands
on the command line, so that R is invoked together with its command-file
"todo.R". Do I really need Rcmd for that? To write "Rterm todo.R" did not
work.)
Richard
--
Richard M?ller - Am Spring 9 - D-58802
2002 Oct 10
2
Environment variables under Windows
Greetings,
I have a question pertaining to the concept of "environment variables"
that is mentioned in the R documentation for "Startup" and also in the
discussion of the Windows configuration of R in the recent book "An
Introduction to R" authored by Venables, Smith, and the R Development Core
Team (referred to as VS in this message).
The Startup documentation and
2002 Sep 10
9
R 1.6.0 beta
R 1.6.0 has gone into final feature freeze as of today.
As a new feature, we'll make interim beta versions available via
ftp://cran.us.r-project.org/pub/R/src/base
alias
http://cran.us.r-project.org/src/base
(filename R-1.6.0beta_*.tar.gz, where * is the creation date).
If you want to help ensure that the final 1.6.0 works satisfactorily
on *your* platform, it might be a good idea to
2002 Apr 11
14
Ordinal categorical data with GLM
Hello All:
I am trying to replicate the results of an example found in Alan
Agresti's "Categorical Data Analysis" on pages 267-269. The example is
one of a 2 x 2 cross-classification table of ordinal counts: job
satisfaction and income.
I am able to get Agresti's results for the independence model (G^2 =
12.03 with df = 9) assuming as he does that the data is nominal, but
2002 Oct 01
6
R-1.6.0 is released
I've rolled up R-1.6.0.tgz a short while ago. This is a major upgrade,
with several new features.
A few of the changes generate compatibility issues. You may wish to
consult http://developer.r-project.org/160update.txt.
We no longer ship the set of recommended packages separately, but
bundle them up with the main distribution. Thus there is now only a
single file to fetch and (barring
2002 Oct 01
6
R-1.6.0 is released
I've rolled up R-1.6.0.tgz a short while ago. This is a major upgrade,
with several new features.
A few of the changes generate compatibility issues. You may wish to
consult http://developer.r-project.org/160update.txt.
We no longer ship the set of recommended packages separately, but
bundle them up with the main distribution. Thus there is now only a
single file to fetch and (barring