[R] array to data.frame

Peter Dalgaard BSA p.dalgaard at biostat.ku.dk
Sat Apr 26 12:15:06 CEST 2003


Jorge Magalhães <jmagalhaes at oninetspeed.pt> writes:

> Hi,
> 
> How i can convert a array in to data.frame structure?
> 
> For example,
> 
> vinteesete<-array(c(1,0,6,4,22,29,11,7,6,2,8,7,21,25,5,6,1,0,11,6,14,24,13,10,2,2,15,13,14,17,9,8,1,2,16,9,14,23,9,6,6,2,17,13,10,20,7,5), 
> dim=c(2,4,6), dimnames=list(grupo=c("I","II"), 
> opiniao=c("Ma","Regular","Boa","MBoa",), 
> relacao=c("atencao","sensibilidade","compreensao","tertempo","ouvir","envolvencia")))

as.data.frame(as.table(vinteesete))

(or as.data.frame.table(vinteesete), but with S4 methods coming in it
is increasingly considered bad style to apply methods to objects that
are not of the requisite class.)

-- 
   O__  ---- Peter Dalgaard             Blegdamsvej 3  
  c/ /'_ --- Dept. of Biostatistics     2200 Cph. N   
 (*) \(*) -- University of Copenhagen   Denmark      Ph: (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk)             FAX: (+45) 35327907



More information about the R-help mailing list