[R] conversao para matriz

Uwe Ligges ligges at statistik.uni-dortmund.de
Fri May 30 17:58:03 CEST 2003


Danilo Tadashi Tagami Kamimura wrote:
> olá,
> estou tentando converter a variável b (abaixo) em uma matriz com duas
> colunas, sem muito sucesso, alguém teria alguma sugestão?
> 
> muito obrigado,
> 
> a<-outer(1:5,1:7,FUN="paste")
> b<- sample(a,10)
>  [1] "4 2" "5 7" "3 3" "4 1" "4 5" "3 5" "5 2" "2 1" "3 7" "1 4"
> 
> Matriz desejada:
> 
>  4   2
>  5   7
>  ......
>  3  7
>  1  4 
> 

On this list in english, please.
I guess you are going to do something like

   matrix(as.numeric(unlist(strsplit(b, " "))), ncol = 2, byrow = TRUE)

[I don't get the point why you use a character vector for those values.]

Uwe Ligges




More information about the R-help mailing list