similar to: Running R on a Local Area Network

Displaying 20 results from an estimated 3000 matches similar to: "Running R on a Local Area Network"

2002 Oct 10
1
problem with Sweave on 1.6 on NT4
Hi, I recently compiled 1.6 on NT4 but I am having a problem with Sweave. Using the inbuilt 'Sweave-test-1.Rnw' file as an example: ------- > library(tools) > testfile <- file.path(.path.package("tools"), "Sweave", "Sweave-test-1.Rnw") ## create a LaTeX file Sweave(testfile) testfile <-
2002 Dec 18
1
Windows binary of Dopt library
Dear R-helpers, Would anybody have a compiled binary version (for Windows) of the Dopt library that is in the development site?. best regards, IOsu -------------------------------------------------------------- Jes?s Mar?a Fr?as Celayeta Dublin Institute of Technology School of Food Sci. and Env. Health. Cathal Bruha St., Dublin 1. Ireland Phone: +353 1 4024459 Fax: +353 1 4024495
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
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
2004 Jun 27
1
help in R calling C function
Hi there, I want to call a C function in R. I have some experience on it, but this time I need to call another C function in the "main" C function. As a simple example, I use the following C code: #include <stdio.h> #include <math.h> #include <stdlib.h> #include <time.h> void main(double *alpha) { double test(); double beta; beta= *alpha *2 +
2004 Jun 27
1
Re: help in R calling C function (Lei Liu)
> Message: 4 > Date: Sun, 27 Jun 2004 03:18:43 -0400 > From: Lei Liu <liulei at l.imap.itd.umich.edu> > Subject: [R] help in R calling C function > To: r-help at stat.math.ethz.ch > Message-ID: <5.1.0.14.1.20040627030746.014936b8 at l.imap.itd.umich.edu> > Content-Type: text/plain; charset="us-ascii"; format=flowed > > Hi there, > > I want
2006 Jan 23
0
Best Practice? Referencing a remote reporting server
Hello All, I''m using SQL Server Reporting Services for my reporting needs. (Sorry, the ruby solutions don''t cut my mustard... yet) What would you all suggest the [Ruby|Rails]Way to encode the urls for my reports. Report server URLS: http://servercomputer/reportserver/appname/[reportfolder/..]reportname?option_a=value&option_b=value So, the "project-level''
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
2003 Jan 28
6
reading non-existent files
Dear R-experts I would like to read all files from a directory, the files have names "myname0001.txt" etc. I paste the directory plus file names and use "read.delim()". My problem is that some file names are missing, so I get an error and my program stops. Is there a way to check for a null pointer analogous to C, so that I can simply skip non-existent filenames? Please do
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.
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 Nov 19
0
memory
>Subject: Error: cannot 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
2002 Dec 05
2
crimson editor
Hello, Sorry about the last email, I just found the shortcutkey for sending, by mistake :-( OK. I am a windows user and I wanted to instal emacs. However, went to speak with the information staf on the institut and they told me that that is a bit problematic sometimes, and that there is a free soft that could do a very similar job which is crimson... This is like a note pad, but highlights the
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 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
2004 Sep 28
0
Max fs size viewed with linux samba client
Hello, I'm working on project that requires my linux application to access (read/write) via samba a single partition that is bigger than 2TB. I would like to know if the latest versions of the linux samba client support this kind of partition and what the limit accually is and what are the specific requirements. Thanks for any help. -- Thibaud Tourneur DBee
2002 Oct 07
0
Problems with libpng12.so.0 in Mandrake 8.2 )
On Mon, 7 Oct 2002, [iso-8859-1] CARLOS ORTEGA wrote: > I have just downloaded the R-1.6.0's rpm for > Mandrake8.2. I installed your previous rpms without > any problem, but in this case, I cannot do that > because there is a dependence with the > "libpng12.so.0". On my system: locate libpng12.so.0 gives me: /usr/lib/libpng12.so.0 urpmf /usr/lib/libpng12.so.0