Displaying 2 results from an estimated 2 matches for "r50212".
Did you mean:
150212
2009 Oct 27
0
help.start() only recognizes forward slashes in R_LIBS_USER which is not the default case
...ws.
It seems like the HTML help server only recognizes forward slashes in
R_LIBS_USER.
The following patch solves the problem (can be added to ~/.Rprofile):
.libPaths(gsub("\\", "/", .libPaths(), fixed=TRUE));
/Henrik
> sessionInfo()
R version 2.10.0 Patched (2009-10-26 r50212)
i386-pc-mingw32
locale:
[1] LC_COLLATE=English_United States.1252
[2] LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C
[5] LC_TIME=English_United States.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods bas...
Suggestion for exception handling: More informative error message for "no applicable method..." (S3)
2009 Oct 20
1
Suggestion for exception handling: More informative error message for "no applicable method..." (S3)
I'd like to suggest that whenever there is no S3 method implementation
available for a particular class, that the error message would also
report the class structure of the object dispatched on.
Example:
foo <- function(...) UseMethod("foo")
foo.ClassA <- function(object, ...) { cat("foo() for ClassA called.\n") }
> foo(structure(1, class="ClassA"))