Displaying 1 result from an estimated 1 matches for "r36070".
Did you mean:
136070
2005 Oct 28
1
Error in ?strsplit
...split, extended = TRUE, fixed = FALSE, perl = FALSE)
.Internal(strsplit(x, as.character(split), as.logical(extended),
as.logical(fixed), as.logical(perl)))
<environment: namespace:base>
So 'split' is coerced, but not 'x'.
This is on:
Version 2.2.0 Patched (2005-10-27 r36070)
A proposed patch is:
--- strsplit.Rd 2005-10-06 07:50:36.000000000 -0500
+++ strsplit.rev.Rd 2005-10-28 11:51:08.000000000 -0500
@@ -37,7 +37,7 @@
contains the vector of splits of \code{x[i]}.
}
\details{
- Arguments \code{x} and \code{split} will be coerced to character, so
+ Argum...