2016-05-16 22 views
10

Io lavoro sempre di più con le liste altamente nidificati come ad esempio:trama struttura in R

mynestedlist<-list(list(LETTERS,month.name),list(list(seq(1,100,5),1,1),seq(1,100,5),seq(1,100,5)))

e, a volte faccio fatica a comprendere la struttura della lista cui sto lavorando. Mi chiedevo se c'è un modo per visualizzare la struttura gerarchica di un elenco, usando forse grafici simili a dendrogrammi.

So che posso usare str per stampare la struttura di una lista:

str(mynestedlist,max.level=1)

Tuttavia, un modo grafico per visualizzare elenchi sarebbe più utile!

risposta

11

È possibile controllare il pacchetto data.tree. Permette di stampare molto facilmente l'elenco annidato e non ha bisogno di scrivere funzioni complicate. Ecco un esempio:

library(data.tree) 
> dt <- FromListSimple(mynestedlist) 
> dt 
    levelName 
1 Root  
2 ¦--1  
3 °--2  
4  °--1 

Questo consente di controllare a livello di lista, e si può combinare questo con str per avere un quadro completo della vostra struttura lista.

+0

Questo potrebbe aiutarti a capirlo ancora meglio: 'stampa (albero, campi = funzione (n) incolla (n $ campi, collapse =", "))'. Diventa un po 'stravolgente perché né i sottoelenco né gli elementi sono nominati, quindi data.tree assegna semplicemente numeri in esecuzione a entrambi. Pertanto, gli elementi della lista nominati renderebbero le cose molto più semplici, se possibile. –

+0

data.tree aiuta sicuramente ad interpretare la struttura degli elenchi annidati, grazie Psidom! – Mattma

3

si potrebbe anche fare un po 'ricorsione nifty se si desidera:

get_str_recur <- function(x,text2,y){ 

    text <- paste0(text2,"Element[",y,"] is a List of length ",length(x), " --> ") 

    for (i in (1:(length(x)))){ 
    subs <- x[[i]] 
    if (is.list(subs)){ 
     get_str_recur(subs,text,i) 

    }else{ 
     print(paste0(text," Element [",i,"] is a ",class(subs)," of length ",length(subs))) 
    } 
    } 
} 
get_str_recur(mynestedlist,"",0) 

#[1] "Element[0] is a List of length 2 --> Element[1] is a List of length 2 --#> Element [1] is a character of length 26" 
#[1] "Element[0] is a List of length 2 --> Element[1] is a List of length 2 --> #Element [2] is a character of length 12" 
#[1] "Element[0] is a List of length 2 --> Element[2] is a List of length 3 --> #Element[1] is a List of length 3 --> Element [1] is a numeric of length 20" 
#[1] "Element[0] is a List of length 2 --> Element[2] is a List of length 3 --> #Element[1] is a List of length 3 --> Element [2] is a numeric of length 1" 
#[1] "Element[0] is a List of length 2 --> Element[2] is a List of length 3 --> #Element[1] is a List of length 3 --> Element [3] is a numeric of length 1" 
#[1] "Element[0] is a List of length 2 --> Element[2] is a List of length 3 --> #Element [2] is a numeric of length 20" 
#[1] "Element[0] is a List of length 2 --> Element[2] is a List of length 3 --> #Element [3] is a numeric of length 20" 

Ciò fornisce un bel diagramma di flusso visivo di ogni ramo della lista vostro albero.