Displaying 4 results from an estimated 4 matches for "inwarn".
Did you mean:
inward
2005 Oct 17
1
RFC: API to allow identification of warnings and errors in the output stream
...wards compatible.
Of course, the naming may not be perfect?
2) While 1 makes it easy to split warning _and_ errors (and messages) from
regular output, it does not suffice to differentiate _between_ warnings,
errors, and messages on the error channel. The patch addresses this, by
making inError, inWarning, and inPrintWarnings from errors.c accessible
(read-only) in R_ext/Error.h.
This part of the patch may be slightly more delicate, in that inError,
inWarning, and inPrintWarnings seem to be more internal status indications.
So the question is: Are those potentially subject to change, if errors...
2005 Oct 10
2
Catching warning and error output
Hi all,
I'm working on a GUI frontend for R, and I'm looking for a good way to catch
all warning- and error-output. The reason for this is mostly, that I would
like to know, which sections of the output are "normal" output, warnings, and
errors. This would allow for some nice features, such as highlighting
warnings and errors in a different color, or popping up a message
2011 Nov 11
1
When collected warnings exceeds 50
...============================
--- src/main/errors.c (revision 57624)
+++ src/main/errors.c (working copy)
@@ -333,8 +333,11 @@
char *tr; int nc;
if(!R_CollectWarnings)
setupwarnings();
- if( R_CollectWarnings > 49 )
+ if( R_CollectWarnings > 49 ) {
+ endcontext(&cntxt);
+ inWarning = 0;
return;
+ }
SET_VECTOR_ELT(R_Warnings, R_CollectWarnings, call);
Rvsnprintf(buf, min(BUFSIZE, R_WarnLength+1), format, ap);
if(R_WarnLength < BUFSIZE - 20 && strlen(buf) == R_WarnLength)
This fix eliminates the "Invalid read" errors, but I'm unsure if i...
2002 May 17
1
Re: [R] options()$warn==2 and try() (PR#1570)
>
> I have a function called FitModels(), which simply takes in the
> names of a data.frame and two variable names within that data.frame, and
> fits and returns a list of objects from 2 coxph() fits, one main effects and
> one interaction model. Sometimes the two variables are such that there is a
> warning message: convergence has not been reached, or the X matrix is
>