Displaying 1 result from an estimated 1 matches for "cobtot".
Did you mean:
cobol
2001 Nov 09
2
Transforming matrix to data.frame: problems
Hi all,
I have problems transforming a matrix
into a data.frame:
If I do:
> is.matrix(parcelas.cobtot.conti)
[1] TRUE
> dim(parcelas.cobtot.conti)
[1] 25 64
> a <- data.frame(parcelas.cobtot.conti)
> is.data.frame(a)
[1] TRUE
>
> dim(a)
[1] 1600 3
Why a does not have the same dimensions than
parcelas.cobtot.conti?
I've tested with caith and the behaviour there
is diff...