Hi R,

 

I have a list,

 

l=list(list(c(1,2),c(4,5),c(6,7)),list(c(11,22,33),c(44,55,66)))

 

> l

[[1]]

[[1]][[1]]

[1] 1 2

 

[[1]][[2]]

[1] 4 5

 

[[1]][[3]]

[1] 6 7

 

 

[[2]]

[[2]][[1]]

[1] 11 22 33

 

[[2]][[2]]

[1] 44 55 66

 

 

How do I know the dimensions of this list?... In other words, how many
sub-lists, sub-sub-lists etc...are there in l? How do I know this?

 

Thanks in advance

Shubha

This e-mail may contain confidential and/or privileged i...{{dropped:13}}

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to