similar to: cant restore .Rdata

Displaying 20 results from an estimated 1000 matches similar to: "cant restore .Rdata"

1998 Dec 01
2
help files for libraries that aren't in the defaults library tree
Hello, I created a library for a bunch of functions that I use frequently so that I dont have to carry duplicate copies around to wherever I fire up an R sesssion. However, I have problems locating the help files for those functions. Here are some details. I created the library "myR" and installed this in /home/royle/R using: R INSTALL -l /home/royle/R /home/royle/Rpackages/myR
1998 Dec 01
2
help files for libraries that aren't in the defaults library tree
Hello, I created a library for a bunch of functions that I use frequently so that I dont have to carry duplicate copies around to wherever I fire up an R sesssion. However, I have problems locating the help files for those functions. Here are some details. I created the library "myR" and installed this in /home/royle/R using: R INSTALL -l /home/royle/R /home/royle/Rpackages/myR
1999 Jun 14
1
readline/history size (PR#211)
Full_Name: Russell Senior Version: 0.64.0 OS: linux-2.2.x Submission from: (NULL) (198.107.133.11) It appears that the GNU readline history size is limited to 50 entries. This is apparently occurring because R is not bothering to override the readline default value (from readline-4.0): ./history.c:59:#define DEFAULT_HISTORY_GROW_SIZE 50 It appears that it ought to be possible to override
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
2001 Oct 13
0
corrupted .RData
Hello All, I'm suffering from a corrupted .RData which I believe arose from a shutdown while the session was in the process of saving the image. I wonder if theres something I can do to recover the data? (the fatal error message is contained below) Unfortunately, there was quite a bit of new code prior to my latest backup, which I would hate to rewrite. kind regards andy
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 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 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
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
2015 Jan 18
2
default min-v/nsize parameters
On Thu, Jan 15, 2015 at 3:55 PM, Michael Lawrence <lawrence.michael at gene.com> wrote: > Just wanted to start a discussion on whether R could ship with more > appropriate GC parameters. I've been doing a number of similar measurements, and have come to the same conclusion. R is currently very conservative about memory usage, and this leads to unnecessarily poor performance on
2006 Sep 21
4
CentOs 4.X and APF firewall issues
Hi, We have 7 Dell 2850 servers with dual xeon 3 gig processors running the APF firewall version 0.9.6 http://rfxnetworks.com/apf.php They run fine for a day or two, then suddenly lock out all incoming connections, other than the backend IP, sometimes restarting the firewall resolves this, but occasionally we may have to leave it 10 mins or so before restarting where it will actually
1999 Jan 29
1
Re: follow-up
From r-help-owner at stat.math.ethz.ch Fri Jan 29 13:40 NZD 1999 Date: Thu, 28 Jan 1999 16:38:36 -0800 (PST) From: "Gregory R. Warnes" <warnes at biostat.washington.edu> To: royle at penguin.irm.r9.fws.gov cc: R comments <r-help at stat.math.ethz.ch> Subject: [R] Re: follow-up MIME-Version: 1.0 .RData files are *not* machine-independent! Thus, it doesn't mean
2015 Jan 20
1
default min-v/nsize parameters
>>>>> Peter Haverty <haverty.peter at gene.com> >>>>> on Mon, 19 Jan 2015 08:50:08 -0800 writes: > Hi All, This is a very important issue. It would be very > sad to leave most users unaware of a free speedup of this > size. These options don't appear in the R --help > output. They really should be added there. Indeed,
2011 Mar 19
2
problem running a function
Dear people, I'm trying to do some analysis of a data using the models by Royle & Donazio in their fantastic book, particular the following function: http://www.mbr-pwrc.usgs.gov/pubanalysis/roylebook/panel4pt1.fn that applied to my data and in the console is as follows: > `desman.y` <- structure(c(3L,4L,3L,2L,1L), .Names = c("1", "2", "3",
2015 Jan 15
2
default min-v/nsize parameters
Just wanted to start a discussion on whether R could ship with more appropriate GC parameters. Right now, loading the recommended package Matrix leads to: > library(Matrix) > gc() used (Mb) gc trigger (Mb) max used (Mb) Ncells 1076796 57.6 1368491 73.1 1198505 64.1 Vcells 1671329 12.8 2685683 20.5 1932418 14.8 Results may vary, but here R needed 64MB of N cells and 15MB
2003 Mar 21
5
manipulating "..." inside a function
Dear R-help, Can some one tell me how to do the following (if it's possible)? Suppose I have a function like this: f <- function(x, y, ...) { ## some code g(x, y, ...) ## some more code } The problem is that g() may not understand everything that comes through in "...". Is there a way to delete some component of "..." and then pass it to g()? Here's
2017 Nov 21
2
Are Rprintf and REprintf thread-safe?
Is it safe to call Rprintf and REprintf from a background thread? I'm working on a package that makes calls to fprintf(stderr, ...) on a background thread when errors happen, but when I run R CMD check, it says: Compiled code should not call entry points which might terminate R nor write to stdout/stderr instead of to the console, nor the system RNG. Is it safe to replace these calls
2019 Sep 15
2
REprintf could be caught by tryCatch(message)
Dear R-devel community, There appears to be an inconsistency in R C API about the exceptions that can be raised from C code. Mapping of R C funs to corresponding R functions is as follows. error -> stop warning -> warning REprintf -> message Rprintf -> cat Rprint/cat is of course not an exception, I listed it just for completeness. The inconsistency I would like to report is
2019 Sep 15
2
[External] REprintf could be caught by tryCatch(message)
Thank you Luke for prompt reply. Is it possible then to request a new function to R C API "message" that would equivalent to R "message" function? Similarly as we now have C "warning" and C "error" functions. Best, Jan On Sun, Sep 15, 2019 at 5:25 PM Tierney, Luke <luke-tierney at uiowa.edu> wrote: > > On Sun, 15 Sep 2019, Jan Gorecki wrote:
2004 Jun 22
3
[Q] GET_DIM() crash on Windows only
I have the following contrived code in package format. On Solaris and Mac OS X, code runs just fine. On Windows, it crashes the R environment with the "Send Bug Report" dialog. I tried R 1.8.1 (Win2K) and R 1.9 (WinXP) binaries with the same result. PCs otherwise appear properly configured for creating R packages. Anything blatantly wrong? Suggestions? TIA Relevant files from package