Displaying 20 results from an estimated 10000 matches similar to: "help files for libraries that aren't in the defaults library tree"
1999 Apr 07
1
library
I also have several packages in my RW0633 in Windoze
and I would like to keep them in one place when I update the R
system.
Brian say to modify Rprofile to
..lib.loc <- c("c:/MyR/library",.Library)
now Rprofile has a line like
.lib.loc <- unique(c(unlist(strsplit(getenv("RLIBS"),":")),.Library)
Sorry to be dense but where should I put the
1998 Nov 18
2
[jar@oriole.er.usgs.gov: Re: [R] loading fortran with Redhat 5.1]
I can not answer this (message only to me).
Certainly, some of you do..
Martin
-------
Date: Wed, 18 Nov 1998 13:22:47 -0500 (EST)
From: "J. Andy Royle" <jar@oriole.er.usgs.gov>
To: Martin Maechler <maechler@stat.math.ethz.ch>
Subject: Re: [R] loading fortran with Redhat 5.1
In-Reply-To: <199811181812.TAA26068@sophie.ethz.ch>
Hi Martin,
The reason I was
1998 Nov 18
1
loading fortran with Redhat 5.1
Hi All,
I'm running R 0.63 on Redhat 5.1 and when I attempt
to load a fortran routine I get:
> dyn.load("/home/royle/Rstuff/varna.o")
Error in dyn.load(x) : unable to load shared library "/home/royle/Rstuff/varna.o"
this function varna.o was compiled with:
gcc -c varna.f
with no errors or warnings.
Does anyone have any thoughts on this?
Thanks! (and thanks to
1998 Nov 09
1
help with "attach"
Hello,
I've been migrating my computing to R and have not had any major
problems running old Splus programs in R. However, the one thing
I am missing is the ability to attach directories full of general
utility functions from whereever I happen to fire up an R session.
As a consequence, I find myself making many duplicate copies of
these little general purpose functions by cutting and
1999 Sep 19
1
error in loading shared libraries
Hi Folks,
I have been using R for many months on my Intel box running RH 5.1
and just recently have run into the following problem:
/home/royle> R
/usr/local/share/R/bin/R.binary: error in loading shared libraries: /usr/local/share/R/bin/R.binary: undefined symbol: __setfpucw
Can someone advise me on how to fix this problem?
I haven't modified my system at all, other than to install
1998 Jan 06
1
private libraries
My code mostly seems to be working fairly well under R 0.61 but I am still
trying to clean up the install procedures. Is the private library mechanism
working now (i.e. am I doing something wrong because it doesn't work for me) or
should I just install under $RHOME/library?
Paul Gilbert
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list --
2005 Apr 18
2
UnauthorizedAccessException in R(D)COM
Dear friends,
I am trying to create a web application to produce some
statistical result using R. In order to avoid high CPU usage of web
server caused by R, I have to create an ASP.NET web service in another
server to involve R.
But I am facing the unauthorizedAccessException when I call the
web service, even I have assigned access and launch permission to everyone
using
2009 Jun 26
1
bug in Rf_PrintValue ?
I'm very green with R, so maybe this is not a bug, but it looks like one to
me. The following program segfaults at the second call to Rf_PrintValue().
To failure depends on the value of the y-string. E.g., if I change it from
"coverage" to, say, "COVERAGE", the segfault does not occur.
/* bug.c */
#include <stdio.h>
#include <Rinternals.h>
#include
2010 Jul 13
1
Building a custom Windows installer
Dear r-devel list members,
It's been several years since I last built a custom Windows installer for R,
and despite my notes and the instructions in Sections 3.1.7 and D.4 of the R
Installation and Administration Manual, I've run into a problem, receiving
the following error message:
----------- snip -----------
C:\R\src\R-2.11.1\src\gnuwin32\installer>make myR
1998 Jun 17
1
.First.lib
There seems to be a minor problem in .First.lib: the library argument is all of
$RLIBS. I think it should be just the one directory from which the package is
being taken.
Paul Gilbert
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or
2009 Apr 15
1
Compiling Fortran Subroutines as R Shared Objects on Mac OS-X
Hello,
I am trying to compile some F77 subroutines as shared objects for R on my Mac.
--> Mac OS-X Version 10.4.11 (Tiger Intel Mac)
I have done this (successfully) before on Sun Solaris and Linux Fedora systems using the following command.
> R CMD SHLIB myfile.f
I have g77 installed from this page.
http://hpc.sourceforge.net/
I am using R 2.8.1, and I have installed all 4 additional
2009 Jun 06
1
Qs on calling R from C
Consider the following simple C program:
/*** hello_r.c ***/
#include <Rinternals.h>
SEXP hello() {
return mkString("Hello, world!\n");
}
int main(void) {
SEXP x = hello();
return x == NULL; /* i.e. 0 on success */
}
This program segfaults:
% myR/bin/R CMD LINK gcc -I./R-2.9.0/src/include -L./myR/lib64/R/lib -lR
hello_r.c -o hello_r > /dev/null
% hello_r
zsh:
1999 Jan 27
1
cant restore .Rdata
Hi Folks,
I loaded a couple of quite large data sets into an R session and then
quit (after saving the image). Now I get:
Error: a read error occured
Fatal error: unable to restore saved data
(remove .RData or increase memory)
after trying to start my R session using something like:
R --vsize XXX --nsize 1000000
For any value of XXX (I went up to 300 or 400, which is as high as I could
go.
2012 Apr 10
1
Building customized R for Windows installer using 'make myR'
I am attempting to build a customized R installer on Windows, using the Inno
Setup installer.
I am following the instructions in Section 3.1.8 of the R Installation and
Administration Manual ("Building the Inno Setup installer"), which includes
the following passage:
An alternative way to customize the installer starting with a binary
distribution is to first
make a full
2008 Mar 30
2
tests Rin Rout
Hi the list,
Some rumour (!) say that is it possible to prepare some tests for
checking our code using .Rin and .Rout. It seems to be a very good
practice, but I did not manage to find information on it.
So does someone know how it works ? What are we suppose to write in Rin ?
More precisely :
- I have a package myPack.r in directories ~/myR/myPack/R/
- I create the directory
1999 Sep 20
3
image legend
Dear R users,
Does anyone have a function for putting a legend on an image
plot? I couldn't locate an R equivalent of image.legend....has
anyone written such a thing?
kind regards
andy
---------------------------------------------------------------------
J. Andy Royle, U.S. Fish and Wildlife Service - Office of Migratory
Bird Management; 11510 American Holly Drive , Laurel, MD
1998 Jun 19
1
R INSTALL doc woes
I put some documentation in a file dse/man/dse.Rd in and did
R INSTALL -l rlibs dse
This built the copies of dse.Rd in rlibs/dse/{help latex html}.
It also wrote over R/doc/html/function.html and R/doc/html/packages.html,
effectively clobbering all the R documentation.
Also, the link that gets put in R/doc/html/packages.html points to
R/library/dse/html/00Index.html
rather than
2023 Aug 22
2
Is r2u at 3.4.1? [branch about handling package collisions under Ubuntu/Debian]
This is definitely tangential to the list: I'm on Ubuntu (22.04.2 LTS)
not Debian and I'm sure this is about issues in the Ubuntu package
management
on my machine, R is only revealing them.
The original subject line came from me wondering if my going over to the r2u
repository would solve the problem.? However, as I think Dirk said, that's
only really likely to be answered by trying
2001 Nov 28
2
Problem with printer driver sharing Win2k klients.
Hi...
I got this new server at work that I have to get 100% up and running by
tomorrow.
It's running Samba 2.2.1a on SuSE 7.3 Pro
It's supposed to be VPN - File and Printer Server
The printers are:
One OCE 700C / CS90 color copier and One OCE 3165
And there is only one problem left.
I can install the printer drivers for Win9x & NT on the samba server.
But I can't figure out how to
2001 Dec 20
2
library()
I've just installed version 1.4.0 of R, and am experiencing
a puzzling phenomenon with the library() function.
I have .lib.loc set as follows:
> .lib.loc
[1] "/usr/local/lib/R/library" "/home/faculty/rolf/Rlib"
If I invoke
> library(melvin)
I get the error message
Error in library(melvin) : There is no package called `melvin'
but if I invoke
>