Displaying 2 results from an estimated 2 matches for "__is__".
Did you mean:
__id__
1997 Nov 22
3
R-beta: help ((message first bounced because of subject -- your admin.))
The help file provided within the rsept.zip is somewhat outdated
compared to the one available on http://www.stat.math.ethz.ch/R/manual/;
would it be possible to update the file for a more easy download instead
of having either to download individually or going online ?
Troels
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=---
r-help mailing list -- Read
2016 Dec 20
3
Unexpected I(NULL) output
Hi all,
I believe there is an issue with passing NULL to the function I().
class(NULL) # "NULL" (as expected)
print(NULL) # NULL (as expected)
is.null(NULL) # TRUE (as expected)
According to the documentation I() should return a copy of its input
with class "AsIs" preprended:
class(I(NULL)) # "AsIs" (as expected)
print(I(NULL)) # list() (not expected!