Am 08.06.2010 17:04, schrieb Erin Hodgess:
> Here is a particular way to solve the problem:
>   

If you solve your own problem then please reply to your own message
otherwise things get confused. How should one know what your problem was
without knowing your first e-mail - if you reply your own e-mail it gets
sorted as such otherwise not. However
>
>> cat.zoo <- zoo(table(dog.df$V1,dog.df$V2)[,1],order=test3)
>> dog.zoo <- zoo(table(dog.df$V1,dog.df$V2)[,1],order=test3)
>>     
that must be an error, a line to much  bur you "heal" it:
>> dog.zoo <- zoo(table(dog.df$V1,dog.df$V2)[,2],order=test3)
>> tree.zoo <- zoo(table(dog.df$V1,dog.df$V2)[,3],order=test3)
>

This is way to complicating, you should put the things into one object,
then you can e.g. plot them or analyse them.

You can do so after this more complicating code with:

all<-merge(cat.zoo,dog.zoo,tree.zoo)

______________________________________________
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