search for: _including

Displaying 3 results from an estimated 3 matches for "_including".

Did you mean: including
2001 Oct 10
1
X Error of failed request: BadWindow (invalid Window parameter)
Hi, I got a new laptop and have been updating all my tools. All the wine apps I need working are running fine except Street Atlas 8.0 which I got running fine on my old laptop. I am failing with the latest wine-cvs from Oct 9th with the following: X Error of failed request: BadWindow (invalid Window parameter) Major opcode of failed request: 4 (X_DestroyWindow) Resource id in failed
2012 Mar 17
0
tryCatch interferes with traceback(), debugger(), dump.frames()....
...ror, and find the problem. In this case, debugger() and traceback() point to stop(e), not to the call to runif(), which makes it harder to figure out what went wrong. In most languages-featuring-exceptions I have used, there is something like "rethrow" which propagates the original error _including the stack trace_ after you are done cleaning up in your error handler. Actually in my opinion that is a big reason why exceptions are a language feature in the first place - to propagate out debugging information while allowing you to clean up. So I am confused why tryCatch ends up obscuring the de...
2003 Aug 15
6
plot.lm mislabels points with na.exclude (PR#3750)
R 1.7.1 on Windows XP The "normal Q-Q plot" produced by plot.lm() mislabels points when the model is fitted using na.action=na.exclude. Example: x <- 1:50 y <- x + rnorm(50) y[c(5,10,15)] <- NA # insert some NA's y[40] <- 50 # add an outlier plot(lm(y ~ x, na.action=na.omit)) # outlier correctly labeled in all # four plots