Skip to content
Prev 371435 / 398513 Next

remove quotes from matrix

Your  claims are false -- or at least confused.
## the I() is to prevent automatic conversion to factor
a b
1 a 1
2 b 2
3 c 3
a   b
[1,] "a" "1"
[2,] "b" "2"
[3,] "c" "3"
[[1]]
NULL

[[2]]
[1] "a" "b"

## Note that there are no rownames, as d had none.
a b
[1,] a 1
[2,] b 2
[3,] c 3

We still need a reprex to resolve the confusion.

-- Bert



Bert Gunter

"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Tue, Sep 19, 2017 at 7:49 AM, greg holly <mak.hholly at gmail.com> wrote: