I could not find any help pages on How to test many
objects for being of equal length
Something like identical for more than two objects?
x<-1:6
y<-1:10
z<-3:5
## For two objects I can do:
identical(length(x),length(y))
## For more than two I currently can do:
length(unique(c(length(x),length(y),length(z))))==1

but there must be a better way.
Thanks,
M

______________________________________________
[EMAIL PROTECTED] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to