search for: d_00

Displaying 2 results from an estimated 2 matches for "d_00".

Did you mean: d00
2019 Sep 14
0
'==' operator: inconsistency in data.frame(...) == NULL
...low). There are other issues with the S4 class example (i.e. data.frame() == <s4_object with representation as list>) which fails for different reasons. ############################################################################## d_0 = data.frame(a = numeric(0)) # zero length data.frame d_00 = data.frame(numeric(0)) # zero length data.frame without names names(d_00) <- NULL # remove names to obtain value being an empty list() at the end of Ops.data.frame d_3 = data.frame(a=1:3) # non-empty data.frame m_0 = matrix(logical(0)) # zero length matrix #------------------------ # error A...
2019 Sep 11
2
'==' operator: inconsistency in data.frame(...) == NULL
Sorry, I can't reproduce the example below even on the same machine. However, the following example produces the same error as NULL values in prior examples: > setClass("FOOCLASS", +????????? representation("list") + ) > ma = new("FOOCLASS", list(M=matrix(rnorm(300), 30,10))) > isS4(ma) [1] TRUE > data.frame(a=1:3) == ma Error in