[R] warnings()

2007-08-06 Thread javier garcia-pintado
Hi, Is there a way to know which library is giving a warning? Specifically, I'm getting a set of warnings: Too many open raster files Thanks and best wishes, -- Javier GarcĂ­a-Pintado Institute of Earth Sciences Jaume Almera (CSIC) Lluis Sole Sabaris s/n, 08028 Barcelona Phone: +34 934095410

Re: [R] warnings()

2007-08-06 Thread Gabor Grothendieck
Try this: options(warn=2) # warnings are converted to errors # rerun your software and at the warning it will stop with an error traceback() On 8/6/07, javier garcia-pintado [EMAIL PROTECTED] wrote: Hi, Is there a way to know which library is giving a warning? Specifically, I'm getting a set

Re: [R] warnings()

2007-08-06 Thread Prof Brian Ripley
Possible routes: 1) Use options(warn=2) and traceback(). 2) Search the *package* sources. This is from package GRASS, I believe. (Not all messages come from packages: they can come from R itself or from compiled code linked into a package.) On Mon, 6 Aug 2007, javier garcia-pintado wrote:

[R] Warnings in package dependencies and /src contains object files.

2007-05-01 Thread Steve Su
Dear All, I recently wrote a package in R and did a check on my package, all is well except for two warnings: * checking package dependencies ... WARNING 'library' or 'require' calls not declared from: MASS See the information on DESCRIPTION files in the chapter 'Creating R packages'

[R] warnings on adapt

2007-03-28 Thread lmpalaci
Hi all I was wondering if someone could help me. I have to estimate some parameters, so I am using the function nlm. Inside this function I have to integrate, hence I am using the function adapt. I don't understand why it is giving the following warnings: At the beginning: Warning: a final

Re: [R] warnings on adapt

2007-03-28 Thread Ranjan Maitra
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code. No one can help you. Ranjan On Wed, 28 Mar 2007 11:47:03 -0600 (MDT) [EMAIL PROTECTED] wrote: Hi all I was wondering if someone could help me.

[R] warnings messages from R when returning nothing

2006-06-03 Thread markleeds
Hi : I have old Splus code that I am trying to turn into R ( I am using windows Xp and R 2.20 ) and I am getting a warning from one of my statements because the behavior of R is different from Splus. below, tempdata is a matrix of numbers and I have the following command which basically runs

Re: [R] warnings messages from R when returning nothing

2006-06-03 Thread Duncan Murdoch
On 6/3/2006 2:44 PM, [EMAIL PROTECTED] wrote: Hi : I have old Splus code that I am trying to turn into R ( I am using windows Xp and R 2.20 ) and I am getting a warning from one of my statements because the behavior of R is different from Splus. below, tempdata is a matrix of numbers and

[R] warnings

2006-03-29 Thread Sven Schaltenbrand
dear list, i have a problem using the adaboost function from the package boost. running the example of leukemia works out very well, but so it does not on my own data. i always get the following 22 warnings: 1: cannot compute exact p-value with ties in: wilcox.test.default(x[which(y == 0)],

Re: [R] warnings

2006-03-29 Thread Gabor Grothendieck
Try this: options(warn = 2) Now rerun it and it will fail with an error at the point of the warning and you can issue a: traceback() to find the exact point at which it failed so you can investigate further. On 3/29/06, Sven Schaltenbrand [EMAIL PROTECTED] wrote: dear list, i have a

Re: [R] warnings

2006-03-29 Thread Uwe Ligges
Sven Schaltenbrand wrote: dear list, i have a problem using the adaboost function from the package boost. running the example of leukemia works out very well, but so it does not on my own data. i always get the following 22 warnings: 1: cannot compute exact p-value with ties in:

[R] warnings in glm (logistic regression)

2006-01-31 Thread Taka Matzmoto
Hello R users I ran more than 100 logistic regression analyses. Some of the analyses gave me this kind warning below. ### Warning messages: 1: algorithm did not converge in: glm.fit(x = X, y = Y, weights = weights, start = start, etastart

Re: [R] warnings in glm (logistic regression)

2006-01-31 Thread vito muggeo
Hi, very likely your data exhibit quasi-separation which cause (log)Lik to be monotone and thus ML estimate do not exist. However you can rely on point estimate and use LRT to test for its significance. Or Better: have a look to brlr or logistf packages which bypass the monotone-likelihood

Re: [R] Warnings about user error (was read.table error)

2005-12-09 Thread P Ehlers
Subject: Re: [R] Warnings about user error (was read.table error) I see no error here, let alone an error in read.table as claimed in your subject line. The posting guide does specifically ask `Use an informative subject line'. Please distinguish warnings about _your_ usage from errors in R

Re: [R] Warnings about user error (was read.table error)

2005-12-08 Thread Eric C. Jennings
PROTECTED] Cc: r-help@stat.math.ethz.ch Sent: Wednesday, December 07, 2005 11:05 PM Subject: Re: [R] Warnings about user error (was read.table error) I see no error here, let alone an error in read.table as claimed in your subject line. The posting guide does specifically ask `Use an informative

Re: [R] Warnings about user error (was read.table error)

2005-12-07 Thread Prof Brian Ripley
I see no error here, let alone an error in read.table as claimed in your subject line. The posting guide does specifically ask `Use an informative subject line'. Please distinguish warnings about _your_ usage from errors in R. The first warning is that R fixed up an error in your file: it is

[R] warnings from hist(): parameter XXX couldn't be set in high-level plot functionN

2005-05-26 Thread George_Heine
Hello - This is not a real problem, just an annoyance. Sometimes, but not always, I get a set of strange warnings from hist(). Example follows. #Produce a histogram of start dates for a set of field measurements. # I didn't reproduce all the dates, because not

[R] Warnings by functions mean(), median()

2005-02-19 Thread mailpuls
Hello, following functions doesnt work correct with my data: median(), geo.mean(). My datafiles contain more than 10.000 lines and six columns from a flow-cytometer-measurment. I need the arithmetic and geometric mean and median. For the calculation of the geometric mean i wrote following

Re: [R] Warnings by functions mean(), median()

2005-02-19 Thread Kjetil Brinchmann Halvorsen
[EMAIL PROTECTED] wrote: Hello, following functions doesnt work correct with my data: median(), geo.mean(). My datafiles contain more than 10.000 lines and six columns from a flow-cytometer-measurment. I need the arithmetic and geometric mean and median. For the calculation of the geometric

Re: [R] Warnings by functions mean(), median()

2005-02-19 Thread Prof Brian Ripley
On Sat, 19 Feb 2005 [EMAIL PROTECTED] wrote: following functions doesnt work correct with my data: median(), geo.mean(). My datafiles contain more than 10.000 lines and six columns from a flow-cytometer-measurment. I need the arithmetic and geometric mean and median. For the calculation of the

Re: [R] warnings and errors with R CMD INSTALL

2005-01-05 Thread thomas
Hello, Am Mittwoch, den 05.01.2005, 06:47 + schrieb Prof Brian Ripley: On Wed, 5 Jan 2005, thomas wrote: But there is no package `pkg1' on CRAN. Try a real name like install.packages(tree) Well, of cause I didn't want install pkg1 or pkg2, the precise commandline was: 1. R

Re: [R] warnings and errors with R CMD INSTALL

2005-01-05 Thread Uwe Ligges
thomas wrote: Hello, Am Mittwoch, den 05.01.2005, 06:47 + schrieb Prof Brian Ripley: On Wed, 5 Jan 2005, thomas wrote: But there is no package `pkg1' on CRAN. Try a real name like install.packages(tree) Well, of cause I didn't want install pkg1 or pkg2, the precise commandline was: 1. R CMD

Re: [R] warnings and errors with R CMD INSTALL

2005-01-05 Thread Dirk Eddelbuettel
thomas tom_hoary at web.de writes: Hello, unfortunately I had to compile latest version of R-2.0.1 by myself. I'd rather would prefer vendors binaries but since the current version of Ubuntu defaults to 1.9.x I had to compile R on my own in order to be up to date! You could have gotten R

Re: [R] warnings and errors with R CMD INSTALL

2005-01-05 Thread Dirk Eddelbuettel
On Wed, Jan 05, 2005 at 12:59:23AM +0100, thomas wrote: 2. install.packages(accuracy, zoo, abind) Packages like zoo, abind and RODBC (from your other mail) are actually available pre-built for Debian. If you file /etc/apt/sources.list points to Debian and Ubuntu (and you can have Ubuntu at

[R] warnings and errors with R CMD INSTALL

2005-01-04 Thread thomas
Hello, unfortunately I had to compile latest version of R-2.0.1 by myself. I'd rather would prefer vendors binaries but since the current version of Ubuntu defaults to 1.9.x I had to compile R on my own in order to be up to date! So far, everything went fine and R runs smoothly. Unfortunately I

Re: [R] warnings and errors with R CMD INSTALL

2005-01-04 Thread thomas
Hello, Am Dienstag, den 04.01.2005, 23:25 + schrieb Prof Brian Ripley: On Tue, 4 Jan 2005, thomas wrote: I followed RNews 3/3 and used: 1. R CMD INSTALL package_version.tar.gz and 2.options(CRAN=http://umfragen.sowi.uni-mainz.de/CRAN/;) install.packages(pkg1. pkg2)

Re: [R] warnings and errors with R CMD INSTALL

2005-01-04 Thread Prof Brian Ripley
On Wed, 5 Jan 2005, thomas wrote: Hello, Am Dienstag, den 04.01.2005, 23:25 + schrieb Prof Brian Ripley: On Tue, 4 Jan 2005, thomas wrote: I followed RNews 3/3 and used: 1. R CMD INSTALL package_version.tar.gz and 2.options(CRAN=http://umfragen.sowi.uni-mainz.de/CRAN/;) install.packages(pkg1.

Re: [R] Warnings using MASS Library

2003-06-24 Thread Prof Brian Ripley
On Mon, 23 Jun 2003, Williams, Brian wrote: I am running R version 1.7.1. In the process of checking the results from some code against the results obtained from version 1.5.1, I encountered a set of warning messages upon exiting from the session: Save workspace image? [y/n/c]: y Warning

[R] Warnings using MASS Library

2003-06-23 Thread Williams, Brian
I am running R version 1.7.1. In the process of checking the results from some code against the results obtained from version 1.5.1, I encountered a set of warning messages upon exiting from the session: Save workspace image? [y/n/c]: y Warning messages: 1: namespaces may not be available when

RE: [R] Warnings with no INDEX file in a package.

2003-01-10 Thread ripley
] on Fri, 10 Jan 2003 11:27:09 +1100 writes: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of David Kane David Kane Sent: den 10 januari 2003 08:01 To: [EMAIL PROTECTED] Subject: [R] Warnings with no INDEX file

Re: [R] Warnings with no INDEX file in a package.

2003-01-09 Thread Jeff Gentry
On Thu, 9 Jan 2003, David Kane David Kane wrote: I have read the suggested sections of the manual. It would seem to me that I should be able to continue to follow my prior practice by turning off the warning for missing INDEX. Certainly, the fact that R CMD build creates an INDEX for you if

RE: [R] Warnings with no INDEX file in a package.

2003-01-09 Thread Henrik Bengtsson
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of David Kane David Kane Sent: den 10 januari 2003 08:01 To: [EMAIL PROTECTED] Subject: [R] Warnings with no INDEX file in a package. In previous versions of R (at least in 1.5.1, I think), my