similar to: seemingly random "nesting of readline input" warnings

Displaying 20 results from an estimated 10000 matches similar to: "seemingly random "nesting of readline input" warnings"

2002 Oct 15
1
Core dump with a 64-bit system (PR#2165)
Full_Name: Kai Mäkisara Version: 1.6.0 OS: Tru64 Submission from: (NULL) (128.214.53.92) Any command given in terminal window dumps core if readline is compiled in. The reason is a bug in pushReadline: the first call pushes the function below the stack. The following patch solves the problem: --- R-1.6.0/src/unix/sys-std.c~ Sun Aug 25 12:51:20 2002 +++ R-1.6.0/src/unix/sys-std.c Tue Oct 15
2002 Nov 19
1
Nesting of readline input (PR#2310)
Hi everyone, I am following instructions here as I have generated the following warning: > # stuff looping through some plots with ask=TRUE Hit <Return> to see next plot: Hit <Return> to see next plot: Hit <Return> to see next plot: Hit <Return> to see next plot: Hit <Return> to see next plot: In addition: Warning message: An unusual circumstance has arisen
2007 Apr 27
0
Error: An unusual circumstance has arisen in the nesting of readline input
Hi, If I have warnings converted to errors, and if I plot a simple plot and then resize and move the plot's window many times, I eventually get an error "Display list redraw incomplete", and after a while an endlessly repeating error "An unusual circumstance has arisen in the nesting of readline input". I cannot stop it using Ctrl-C (Ctrl-Z works though). I'm
2002 Nov 04
1
longjmp - was: seemingly random "nesting of readline input" w arnings
Barry, Would you mind providing the necessary patch for this behavior? Thanks, Greg > -----Original Message----- > From: Barry Rowlingson [mailto:B.Rowlingson@lancaster.ac.uk] > Sent: Monday, November 04, 2002 8:04 AM > To: r-devel@stat.math.ethz.ch > Subject: Re: longjmp - was: seemingly random "nesting of > readline input" > warnings > > > Luke
2003 Jan 08
0
New package: gpclib
I have just uploaded a package to CRAN called `gpclib' for clipping large and complex polygons. This package provides an R interface to Alan Murta's very fast General Polygon Clipper library (written in C), which has an optimized version of the Vatti algorithm. Not all features of Murta's library are implemented -- right now you can do intersections, differences, and unions. There
2003 Jan 08
0
New package: gpclib
I have just uploaded a package to CRAN called `gpclib' for clipping large and complex polygons. This package provides an R interface to Alan Murta's very fast General Polygon Clipper library (written in C), which has an optimized version of the Vatti algorithm. Not all features of Murta's library are implemented -- right now you can do intersections, differences, and unions. There
2002 Aug 31
1
building r-devel on RedHat 7.1 with gcc 3.1.1
Has anyone tried to build r-devel on a RedHat 7.1 with the gcc 3.1.1 compiler? I didn't have problems with gcc 2.95.x or gcc 3.0.4, but when I ran the configure with gcc 3.1.1 I got the following error: [...] checking whether gcc accepts -M for generating dependencies... yes checking whether gcc supports -c -o FILE.lo... yes checking how to get verbose linking output from g77... -v checking
2003 May 01
0
system.file() and .path.package() incorrect with package versions
The system.file() and .path.package() functions appear to be unaware of package versions and can return incorrect information or fail if a package is installed using `installWithVers = TRUE' of install.packages(). For example, I can run > install.packages("session", "~/R-local/libs", installWithVers = TRUE) and > library(session, version = "1.0.1")
2003 Jan 21
0
FW: Contour Plots
Huan, If you have not already received an answer, try this, it helped me immensely and solved my problem. Mike -----Original Message----- From: Roger Peng [mailto:rpeng at stat.ucla.edu] Sent: Wednesday, January 15, 2003 9:30 AM To: mhoward Cc: 'r-help at lists.R-project.org' Subject: Re: [R] Contour Plots I believe this was discussed about two days ago -- check the archives under
2003 Jan 30
1
vector passed to `if' in `pgamma'
In the current R-devel sources, the `pgamma' function gives a warning when the `shape' argument is passed as a vector of length > 1. That is, > pgamma(3, 1) [1] 0.950213 > pgamma(3, c(1, 2)) [1] 0.9502129 0.8008517 Warning message: the condition has length > 1 and only the first element will be used in: if (shape <= 0) stop("shape must be strictly positive")
2002 Jun 22
1
Does matmult exist?
Does the function 'matmult' still exist in R? It has a help page and is referenced in the help page for 'kronecker', but I can't seem to access the function itself. Obviously, not an issue of great concern but just a curiosity. > version _ platform i386-pc-mingw32 arch i386 os mingw32 system i386, mingw32 status
2002 Dec 30
2
Writing packages with `methods' package
I'm trying to write a package which uses classes/methods as defined in the `methods' package. I have a single .R file which defines the class and various methods for that class. At the top of the file I have require(methods) and then setClass("myclass", ...) setGeneric("intersect") setMethod("intersect", "myclass", function(x,y) ...) I noticed
2002 Oct 24
1
packages in non-system directories
Quick question about installing packages on a system where you do not have root access. Suppose a person is using R on a shared system where he cannot write to the installation directory (i.e. /usr/local/lib/R). What general advice would you give regarding where to install packages from CRAN. Should he use the R_LIBS environment variable or maybe .libPaths() in R or .Renviron? Thanks, -roger
2002 Aug 28
2
sourcing a file with the plot.lme() function
I ran into a problem trying to make a plot from a file that's read using source. Basically, I have the following code in a file "plot.R" : library(nlme) data(Loblolly) fm1 <- nlme(height ~ SSasymp(age, Asym, R0, lrc), data = Loblolly, fixed = Asym + R0 + lrc ~ 1, random = Asym ~ 1, start = c(Asym = 103, R0 = -8.5, lrc = -3.3))
2019 Apr 18
1
R prompt updates are not validated
I was trying to get an interactive R prompt with the current working directory. I reviewed R source 'main.c' and 'options.c', and saw that a 20 char buffer is used when in Browse debugging mode, but that no other validation is done on the length of the prompt option. This hangs R, or takes extremely long to return: # R --vanilla big <- paste(sample(LETTERS, size = 1e7, replace
2003 Jan 17
1
supplying gradient to constrOptim()
Hi, I'm very interested in using the constrOptim() function currently in the R-devel sources. In particular, I'm trying to fit point process conditional intensity models via maximum likelihood. However, I noticed that the gradient of the objective function must be supplied for all but the Nelder-Mead method. I was wondering why this was because optim() itself does not require a gradient
2002 Aug 29
0
fitting nlme model inside a function
I'm not an experienced user of the 'nlme' package but I ran into a curious problem recently that I couldn't find on the mailing list anywhere. I have simple function which calls 'groupedData' and 'nlme': g <- function(dataset) { unig <- groupedData(logfv ~ Vs+v1+v2+v3+PHA| EQ, data=dataset) modelfv <- nlme(logfv~a + c*log(Vs/a1)+ b1*( v1 +
2003 Mar 05
1
order of package loading and printing messages to console on startup
Recently in R-devel, I've noticed that when I start up R, code in .Rprofile (in the working directory) gets sourced but any messages printed out by that code (e.g. by `cat') are printed *before* the introductory statement about R. For example, if I put the line library(KernSmooth) in my .Rprofile file, I get artemis:> R KernSmooth 2.22 installed Copyright M. P. Wand 1997 R :
2002 Aug 08
2
R graphics and dpi
Is there a way to tell at what dpi R generates graphics at? I need to generate 600 dpi graphics for an article. -roger _______________________________ UCLA Department of Statistics rpeng at stat.ucla.edu http://www.stat.ucla.edu/~rpeng -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send
2002 Mar 31
1
How to get the datapoints of an density estimationwithlocfit?
Hello!! At first thank you all for your suggestions and your help. But I would like to get another group of datas from the density estimation. I don't know if these information are provided by locfit or I should use an other function like plot(). Description: Each number between 1 and 100 (only integer) for example should have only one density value. But I also would like to have the density